diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 237217aaa5..0000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,58 +0,0 @@ -# Java Gradle CircleCI 2.0 Configuration file. -version: 2 -jobs: - build: - docker: - - image: circleci/openjdk:8-jdk - - working_directory: ~/repo - - environment: - JVM_OPTS: -Xmx3200m - TERM: dumb - - steps: - - checkout - - # Download and cache dependencies - - restore_cache: - keys: - - v1-dependencies-{{ checksum "build.gradle" }} - # fallback to using the latest cache if no exact match is found - - v1-dependencies- - - - run: - name: Grant access to ./gradlew. - command: | - chmod +x gradlew - - - run: - name: Show the Gradle version in use with other details. - command: | - ./gradlew --version - - - run: - name: Set up the workspace for ci build - command: | - ./gradlew setupCiWorkspace - - - run: - name: Clean the workspace ready for a fresh build. - command: | - ./gradlew clean - - - run: - name: Attempt to build the mod. - command: | - ./gradlew build - - - store_artifacts: - path: ./build/libs - - - save_cache: - paths: - - ~/.gradle - key: v1-dependencies-{{ checksum "build.gradle" }} - - # run tests! - - run: ./gradlew test diff --git a/.gitattributes b/.gitattributes index 84a0494e0c..8770bef11d 100644 --- a/.gitattributes +++ b/.gitattributes @@ -18,6 +18,10 @@ gradlew text eol=lf *.yaml text *.toml text +# Preserve every checksum-sealed Mavenizer fixture byte-for-byte across clones. +# The upstream patch also contains intentional trailing spaces. +ci-fixtures/tools/* -text -whitespace + # Documents *.pdf binary diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000000..d6a16c943d --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,156 @@ +name: IronAgeFurniture 1.18.2 CI + +on: + push: + branches: + - master-1.18 + - 'feature/**' + pull_request: + branches: + - master-1.18 + +permissions: + contents: read + +concurrency: + group: iron-age-furniture-1.18-${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + cold-forge-bootstrap: + name: Cold Forge bootstrap + runs-on: ubuntu-latest + timeout-minutes: 60 + + steps: + - name: Check out source + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 + + - name: Install pinned Java 25 Mavenizer runtime + uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5 + with: + distribution: temurin + java-version: '25.0.3+9.0.LTS' + + - name: Install pinned Java 8 Renamer runtime + uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5 + with: + distribution: temurin + java-version: '8.0.502+7' + + - name: Install pinned Java 17 runtime and toolchain + uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5 + with: + distribution: temurin + java-version: '17.0.1+12' + + - name: Bootstrap Forge from an empty cache + shell: bash + env: + GRADLE_USER_HOME: ${{ runner.temp }}/iron-age-furniture-cold-gradle + run: | + set -euo pipefail + test ! -e .gradle + test ! -e "$GRADLE_USER_HOME" + mkdir -p "$GRADLE_USER_HOME" + chmod +x ./gradlew + ./gradlew verifyMavenizerCompatibilityFixture help \ + --no-daemon --no-build-cache --stacktrace --max-workers=2 \ + -Dorg.gradle.java.installations.paths="$JAVA_HOME,$JAVA_HOME_8_X64,$JAVA_HOME_25_X64" \ + -Dorg.gradle.java.installations.auto-detect=false \ + -Dorg.gradle.java.installations.auto-download=false \ + | tee "$RUNNER_TEMP/cold-forge-bootstrap.log" + grep -F "Applied Minecraft 1.18.2 Holder.Direct javac compatibility patch" \ + "$RUNNER_TEMP/cold-forge-bootstrap.log" + prepared_jar="$GRADLE_USER_HOME/caches/minecraftforge/forgegradle/mavenizer/caches/forge/net/minecraftforge/forge/1.18.2-40.3.0/official/1.18.2/recompiled.jar" + test -s "$prepared_jar" + sha256sum "$prepared_jar" > "$RUNNER_TEMP/prepared-before.sha256" + + - name: Verify same-cache preparation is idempotent + shell: bash + env: + GRADLE_USER_HOME: ${{ runner.temp }}/iron-age-furniture-cold-gradle + run: | + set -euo pipefail + ./gradlew verifyMavenizerCompatibilityFixture help \ + --no-daemon --no-build-cache --stacktrace --max-workers=2 \ + -Dorg.gradle.java.installations.paths="$JAVA_HOME,$JAVA_HOME_8_X64,$JAVA_HOME_25_X64" \ + -Dorg.gradle.java.installations.auto-detect=false \ + -Dorg.gradle.java.installations.auto-download=false + prepared_jar="$GRADLE_USER_HOME/caches/minecraftforge/forgegradle/mavenizer/caches/forge/net/minecraftforge/forge/1.18.2-40.3.0/official/1.18.2/recompiled.jar" + test -s "$prepared_jar" + sha256sum "$prepared_jar" > "$RUNNER_TEMP/prepared-after.sha256" + diff -u "$RUNNER_TEMP/prepared-before.sha256" "$RUNNER_TEMP/prepared-after.sha256" + + build: + name: Build, test, and audit + runs-on: ubuntu-latest + timeout-minutes: 60 + + steps: + - name: Check out source + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 + + - name: Install pinned Java 25 Mavenizer runtime + uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5 + with: + distribution: temurin + java-version: '25.0.3+9.0.LTS' + + - name: Install pinned Java 8 Renamer runtime + uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5 + with: + distribution: temurin + java-version: '8.0.502+7' + + - name: Install pinned Java 17 runtime and toolchain + uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5 + with: + distribution: temurin + java-version: '17.0.1+12' + + - name: Set up Gradle + uses: gradle/actions/setup-gradle@9c971963bec38e04b3d30dcc455b5382be2fdbfb # v6 + + - name: Build, test, document, and audit + run: | + chmod +x ./gradlew + ./gradlew clean check build javadoc verifyReleaseArtifacts verifyReleaseChecksums \ + --no-daemon --stacktrace \ + -Dorg.gradle.java.installations.paths="$JAVA_HOME,$JAVA_HOME_8_X64,$JAVA_HOME_25_X64" \ + -Dorg.gradle.java.installations.auto-detect=false \ + -Dorg.gradle.java.installations.auto-download=false + + - name: Generate and audit Eclipse production launches + run: >- + ./gradlew genEclipseRuns eclipse isolateEclipseProductionRuns verifyEclipseProductionClasspath + --no-daemon --stacktrace + -Dorg.gradle.java.installations.paths="$JAVA_HOME,$JAVA_HOME_8_X64,$JAVA_HOME_25_X64" + -Dorg.gradle.java.installations.auto-detect=false + -Dorg.gradle.java.installations.auto-download=false + + - name: Upload audited release candidate + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 + with: + name: iron-age-furniture-1.18.2-${{ github.sha }} + if-no-files-found: error + retention-days: 30 + path: | + build/libs/iron-age-furniture-0.3.0.118021.jar + build/libs/iron-age-furniture-0.3.0.118021-sources.jar + build/libs/iron-age-furniture-0.3.0.118021-javadoc.jar + build/release/SHA256SUMS + CHANGELOG.md + + - name: Upload diagnostics on failure + if: failure() + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 + with: + name: iron-age-furniture-1.18.2-diagnostics-${{ github.sha }} + if-no-files-found: ignore + retention-days: 14 + path: | + build/test-results/** + build/reports/** + build/problems/** + run/logs/** diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 0000000000..c259247193 --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,76 @@ +name: CodeQL + +on: + push: + branches: + - master-1.18 + - 'feature/**' + pull_request: + branches: + - master-1.18 + schedule: + - cron: '43 7 * * 4' + +permissions: + actions: read + contents: read + security-events: write + +jobs: + analyze: + name: Analyze Java + runs-on: ubuntu-latest + timeout-minutes: 45 + + steps: + - name: Check out source + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 + + - name: Install pinned Java 25 Mavenizer runtime + uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5 + with: + distribution: temurin + java-version: '25.0.3+9.0.LTS' + + - name: Install pinned Java 8 Renamer runtime + uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5 + with: + distribution: temurin + java-version: '8.0.502+7' + + - name: Install pinned Java 17 runtime and toolchain + uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5 + with: + distribution: temurin + java-version: '17.0.1+12' + + - name: Set up Gradle + uses: gradle/actions/setup-gradle@9c971963bec38e04b3d30dcc455b5382be2fdbfb # v6 + + - name: Initialize CodeQL + uses: github/codeql-action/init@db488ddef3bf6cb639b32c2e9a7c0a7ea8271d28 # v4 + with: + languages: java-kotlin + + - name: Compile production code + run: | + chmod +x ./gradlew + gradle_args=( + clean classes --rerun-tasks --no-build-cache --no-daemon --stacktrace + "-Dorg.gradle.java.installations.paths=$JAVA_HOME,$JAVA_HOME_8_X64,$JAVA_HOME_25_X64" + -Dorg.gradle.java.installations.auto-detect=false + -Dorg.gradle.java.installations.auto-download=false + ) + for attempt in 1 2 3; do + if ./gradlew "${gradle_args[@]}"; then + exit 0 + fi + if [ "$attempt" -eq 3 ]; then + echo "CodeQL compilation failed after $attempt attempts." >&2 + exit 1 + fi + echo "::warning::CodeQL compilation attempt $attempt failed; retrying with the preserved Forge cache." + done + + - name: Analyze + uses: github/codeql-action/analyze@db488ddef3bf6cb639b32c2e9a7c0a7ea8271d28 # v4 diff --git a/.github/workflows/release-on-tag.yml b/.github/workflows/release-on-tag.yml new file mode 100644 index 0000000000..f5b6d68df0 --- /dev/null +++ b/.github/workflows/release-on-tag.yml @@ -0,0 +1,81 @@ +name: Validate IronAgeFurniture release tag + +on: + push: + tags: + - '*.*.*.*' + +permissions: + actions: read + contents: read + +concurrency: + group: iron-age-furniture-release-tag-${{ github.ref_name }} + cancel-in-progress: false + +jobs: + validate-release-tag: + name: Validate tag for manual release confirmation + if: github.repository == 'MinecraftModDevelopmentMods/IronAgeFurniture' + runs-on: ubuntu-latest + timeout-minutes: 10 + + steps: + - name: Check out tagged source + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 + with: + fetch-depth: 0 + + - name: Validate release tag, target metadata, and prior CI + env: + GH_TOKEN: ${{ github.token }} + run: | + set -euo pipefail + value() { sed -n "s/^$1=//p" gradle.properties; } + release_version="$(value mod_version)" + minecraft_version="$(value minecraft_version)" + loader_name="$(value loader_name)" + loader_code="$(value loader_code)" + + IFS=. read -r mc_major mc_minor mc_patch extra <<<"$minecraft_version" + if [[ -n "${extra:-}" || -z "${mc_major:-}" || -z "${mc_minor:-}" ]]; then + echo "Invalid minecraft_version=$minecraft_version" >&2 + exit 1 + fi + mc_patch="${mc_patch:-0}" + case "$loader_name:$loader_code" in + forge:1|neoforge:2) ;; + *) echo "Invalid loader metadata $loader_name/$loader_code" >&2; exit 1 ;; + esac + printf -v minor_padded '%02d' "$((10#$mc_minor))" + printf -v patch_padded '%02d' "$((10#$mc_patch))" + target_suffix="${mc_major}${minor_padded}${patch_padded}${loader_code}" + if [[ ! "$release_version" =~ ^[0-9]+\.[0-9]+\.[0-9]+\.${target_suffix}$ ]]; then + echo "mod_version $release_version does not match $minecraft_version $loader_name target $target_suffix" >&2 + exit 1 + fi + if [[ "$GITHUB_REF_NAME" != "$release_version" ]]; then + echo "Release tag must equal mod_version $release_version; found $GITHUB_REF_NAME" >&2 + exit 1 + fi + successful_ci="$(gh api \ + "repos/$GITHUB_REPOSITORY/commits/$GITHUB_SHA/check-runs?per_page=100" \ + --jq '[.check_runs[] | select(.name == "Build, test, and audit" and .conclusion == "success")] | length')" + if [[ "$successful_ci" -lt 1 ]]; then + echo "The tagged commit has no successful Build, test, and audit check" >&2 + exit 1 + fi + + - name: Record the manual publication interface + env: + RELEASE_WORKFLOW_URL: https://github.com/${{ github.repository }}/actions/workflows/publish-release.yml + run: | + { + echo "## Release tag validated" + echo + echo "Tag \`$GITHUB_REF_NAME\` matches the selected target and has a successful Build, test, and audit check." + echo + echo "No artifact is published by this tag-validation workflow." + echo + echo "Use [Publish IronAgeFurniture release]($RELEASE_WORKFLOW_URL) on the default branch to start or recover guarded publication." + } >> "$GITHUB_STEP_SUMMARY" diff --git a/.github/workflows/validate-gradle-build.yml b/.github/workflows/validate-gradle-build.yml new file mode 100644 index 0000000000..e37b1ad2c9 --- /dev/null +++ b/.github/workflows/validate-gradle-build.yml @@ -0,0 +1,23 @@ +name: Validate Gradle Wrapper + +on: + push: + branches: + - master-1.18 + - 'feature/**' + pull_request: + branches: + - master-1.18 + +permissions: + contents: read + +jobs: + validation: + name: Validation + runs-on: ubuntu-latest + steps: + - name: Check out source + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 + - name: Validate wrapper integrity + uses: gradle/actions/wrapper-validation@9c971963bec38e04b3d30dcc455b5382be2fdbfb # v6 diff --git a/.gitignore b/.gitignore index 3a97555113..9f4fa8570e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,36 +1,73 @@ -# eclipse -bin +# Eclipse and Buildship +bin/ *.launch -.settings -.settings/* -.metadata +.settings/ +.metadata*/ +.eclipse/ .classpath .project +eclipse/ -# idea -out +# IntelliJ IDEA +out/ *.ipr *.iws *.iml -.idea +.idea/ -# gradle -build -.gradle +# Gradle and dependency worktrees +build/ +.gradle/ +.gradle-home/ +.ci-dependencies/ +classes/ -# other -eclipse -run -classes -*.hprof +# Machine-specific agent context +AGENTS.md +AGENT.md +agent-notes/ +.agent/ +.agents/ +.codex/ +.claude/ +.gemini/ +CLAUDE.md +GEMINI.md +agent-*.md +codex-*.md + +# Generated Minecraft, test, and evidence output +run/ +run-data/ +run-*/ +benchmark/ +benchmark-*/ +regression/ +regression-*/ +evidence/ +evidence-*/ +*-evidence/ +test-output/ +test-results/ +reports/ +logs/ +crash-reports/ +mcmodsrepo/ -log +# Local runtime and diagnostic files +local.properties +*.log +*.jfr +*.hprof +hs_err_pid*.log +replay_pid*.log /README.txt /forge-*-changelog.txt - secret.json +*.keystore +*.jks +*.p12 libs/* !/libs/README.txt - .DS_Store -.okhttpcache/* +.okhttpcache/ diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 342b0304e9..0000000000 --- a/.travis.yml +++ /dev/null @@ -1,14 +0,0 @@ -dist: trusty -language: java -sudo: false -cache: - directories: - - $HOME/.gradle -notifications: - email: false -jdk: - - oraclejdk8 -before_install: - - chmod a+x gradlew -install: ./gradlew setupCIWorkspace -S -script: ./gradlew clean build -S diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29bb2..6b7675eced 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1,68 @@ +# IronAgeFurniture 0.3.0.118021 + +Phase 3 lighting release for Minecraft 1.18.2 and Forge 40.3.0. + +## Player-visible changes + +- Add the complete Phase 3 lighting set: empty, torch, unlit-torch, + redstone-torch, glow, lava, and redstone lamps and sconces, obsidian chunks, + hidden redstone-light states, and soul-torch sconces. +- Restore lava-lamp throwing. Thrown and falling lamps shatter with a glass + sound, ignite dry landing positions, damage struck entities, and become a + waterlogged obsidian chunk on contact with water. +- Fix waterlogging lava-filled floor and wall sconces so they become matching + waterlogged empty sconces, preserve their supports, and drop one obsidian chunk. +- Let placed lava lamps melt ordinary ice directly beneath them. Packed ice + and blue ice are intentionally unaffected. +- Correct falling and underwater lamp placement, survival and Creative drops, + and redstone-light transitions. +- Give ordinary wooden chairs and benches normal wood flammability while + keeping crimson and warped furniture fireproof. +- Correct every recipe advancement to use its own ingredient and matching + recipe-unlocked criterion. Common oak planks no longer unlock unrelated + lighting or optional-mod recipes. +- Keep each wood and furniture form as its own recipe-book entry instead of + cycling unrelated furniture through one shared recipe cell. +- Synchronise and render thrown lava lamps visibly in flight, show the + obsidian chunk at a useful angle in inventories, and allow wall sconces to + use narrow centre supports such as fences and walls. +- Load Biomes O' Plenty, Immersive Engineering, and Oh The Biomes You'll Go + recipes and advancements only when their mod is installed. Missing optional + mods no longer produce ignored-advancement or missing-recipe log spam. +- Remove stale Immersive Engineering recipes and the unreachable log-bench + advancement for furniture IDs that were never registered, and correct the + retained IE texture paths against the published 1.18.2 jar. +- Match the published BYG registry by excluding its retired glacial-oak and + ironwood families, and use its actual bulbis-stem and embur-pedu tags. + +## Legacy world upgrades + +- Add a pre-flattening migration path for supported IronAgeFurniture content + from Forge 1.10.2 and 1.12.2 worlds. +- Preserve furniture facing, connected-bench shape, separate light states, + and all sixteen padded-bench colours. The earlier colourless format becomes + red, including items in player storage, nested containers, and item entities. +- Rename legacy `big_oak` furniture to `dark_oak`. +- Import the 1.12.2 Oh The Biomes Add-On namespace into the embedded BYG + catalog, retaining surviving woods and applying documented visual fallbacks + for Frozen Oak, Great Oak, Hawthorn, Ironwood, Palm, and Rowan. + +## Compatibility and tooling + +- Move the supported Java API namespace to + `zone.moddev.mc.ironagefurniture`; the Maven coordinate is + `zone.moddev.mc:iron-age-furniture:0.3.0.118021`. +- Preserve the `ironagefurniture` mod ID and all surviving registry, resource, + configuration, entity, NBT, and saved-world identities. +- Modernize the build to ForgeGradle 7.0.34, Gradle 9.6.1, and pinned Java + toolchains while allowing Eclipse to use a newer Temurin 17 patch. +- Add a deterministic furniture catalog, conditional-data validation, exact + optional-mod SHA-256 manifests, and positive packaged-server probes. +- Resolve optional furniture from the registered catalog instead of declaring + absent integration blocks as object holders, reducing harmless startup-log + noise when optional mods are not installed. +- Produce deterministic main, sources, and Javadoc jars with SHA-256 checksums + and reproducible Eclipse/Buildship metadata. + +Publication remains gated by MMD's protected release workflow after manual +acceptance and hosted CI. diff --git a/README.md b/README.md index 96c4ad60b6..b3a986e2db 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,81 @@ -[![](https://img.shields.io/badge/Discord-MMD-green.svg?style=flat&logo=Discord)](https://discord.mcmoddev.com) +[![Discord](https://img.shields.io/badge/Discord-MMD-green.svg?style=flat&logo=Discord)](https://discord.moddev.zone) +[![CurseForge](https://img.shields.io/badge/CurseForge-Iron%20Age%20Furniture-orange.svg)](https://www.curseforge.com/minecraft/mc-mods/iron-age-furniture) +[![Build, test, and audit](https://github.com/MinecraftModDevelopmentMods/IronAgeFurniture/actions/workflows/ci.yml/badge.svg?branch=master-1.18)](https://github.com/MinecraftModDevelopmentMods/IronAgeFurniture/actions/workflows/ci.yml?query=branch%3Amaster-1.18) # IronAgeFurniture -A mod for adding Iron Age Furniture to Minecraft + +IronAgeFurniture adds chairs, stools, benches, lamps, sconces, and other ye +olde-style furniture to Minecraft. Seating is functional, furniture supports +the appropriate vanilla and optional-mod materials, and lighting includes +falling and throwable lava lamps. + +This branch provides IronAgeFurniture `0.3.0.118021` for Minecraft 1.18.2 and +Forge 40.3.0. It requires Java 17 and can be installed on both clients and +dedicated servers. + +## Optional integrations + +IronAgeFurniture adds matching furniture and recipes when these mods are +installed: + +- Biomes O' Plenty +- Immersive Engineering +- Oh The Biomes You'll Go + +They are optional. Their recipes and recipe advancements are conditionally +loaded, so a normal installation does not need any of them. + +## Compatibility + +The persistent mod ID, registry names, resource paths, configuration names, +entities, and saved-world identity remain under `ironagefurniture`. Existing +1.18.2 worlds therefore retain the same runtime identities. + +This release can also upgrade supported IronAgeFurniture furniture and Phase 3 +lights saved by the Forge 1.10.2 and 1.12.2 editions across Minecraft's +flattening. Facing, connected-bench shape, lighting state, and padded-bench +colour are preserved. The original red-only padded benches become red, while +the later sixteen-colour format keeps its saved `Color` value in placed blocks, +inventories, containers, and dropped items. + +Furniture from the 1.12.2 Iron Age Furniture Oh The Biomes Add-On is imported +into the matching embedded BYG catalog. Woods no longer present in BYG 1.18.2 +use the closest documented visual replacement: Frozen Oak becomes Aspen, +Great Oak becomes vanilla Oak, Hawthorn becomes Cherry, Ironwood becomes +Ebony, Palm becomes Baobab, and Rowan becomes Maple. + +Always back up a world before moving it to a newer Minecraft version. Once the +world has been saved by 1.18.2 it cannot safely be reopened in an older version. + +The supported Java source namespace is now +`zone.moddev.mc.ironagefurniture`. Add-ons compiled against the former +`com.mcmoddev.ironagefurniture` packages must update their imports. The Maven +coordinate is +`zone.moddev.mc:iron-age-furniture:0.3.0.118021`. + +See [CHANGELOG.md](CHANGELOG.md) for the release notes and +[docs/VERSIONS.md](docs/VERSIONS.md) for the versioning scheme. Bugs can be +reported through the +[MMD issue tracker](https://github.com/MinecraftModDevelopmentMods/IronAgeFurniture/issues). + +## Building + +Use the checked-in Gradle wrapper with Temurin Java 17. CI pins 17.0.1+12; +Eclipse may use a newer Temurin 17 patch release. The checksum-sealed +Mavenizer compatibility fixture runs with Temurin Java 25. + +```text +gradlew.bat clean check build javadoc verifyReleaseArtifacts verifyReleaseChecksums +``` + +Generate reproducible Eclipse/Buildship metadata with: + +```text +gradlew.bat prepareEclipse verifyEclipseProductionClasspath +``` + +Release publication is initiated manually from the protected default-branch +dispatcher after the exact target commit has passed hosted CI. Building +locally does not tag or publish a release. + +IronAgeFurniture is licensed under LGPL-2.1. diff --git a/build.gradle b/build.gradle index 280341ab83..e570beb52f 100644 --- a/build.gradle +++ b/build.gradle @@ -1,652 +1,1489 @@ -buildscript { - repositories { - mavenLocal() - jcenter() - mavenCentral() - maven { - name = 'forge' - url = 'https://files.minecraftforge.net/maven' +import groovy.json.JsonSlurper +import groovy.xml.XmlSlurper +import java.nio.charset.StandardCharsets +import java.security.MessageDigest +import java.util.Arrays +import java.util.jar.Manifest +import java.util.zip.ZipFile +import org.apache.tools.ant.filters.FixCrLfFilter +import org.gradle.api.publish.maven.tasks.PublishToMavenRepository +import org.gradle.jvm.toolchain.JvmVendorSpec + +plugins { + id 'java' + id 'eclipse' + id 'idea' + id 'maven-publish' + id 'net.minecraftforge.renamer' version '1.1.5' + id 'net.minecraftforge.gradle' version '7.0.34' +} + +apply from: 'gradle/furniture-catalog.gradle' + +def sha256Of = { File inputFile -> + MessageDigest digest = MessageDigest.getInstance('SHA-256') + inputFile.withInputStream { input -> + byte[] buffer = new byte[8192] + for (int read = input.read(buffer); read >= 0; read = input.read(buffer)) { + if (read > 0) digest.update(buffer, 0, read) + } } - maven { - name = 'gradle' - url 'https://plugins.gradle.org/m2/' + digest.digest().encodeHex().toString().toUpperCase() +} + +def mavenizerToolsDirectory = layout.projectDirectory.dir('ci-fixtures/tools') +def mavenizerCompatibilityJar = mavenizerToolsDirectory.file( + 'minecraft-mavenizer-0.5.21-orespawn-1.18.jar') +def mavenizerSourcePatch = mavenizerToolsDirectory.file( + 'minecraft-1.18-holder-accessor.patch') +def mavenizerLicense = mavenizerToolsDirectory.file('LICENSE-MAVENIZER.txt') +def mavenizerReadme = mavenizerToolsDirectory.file('README.md') +def mavenizerFixtureChecksums = [ + (mavenizerCompatibilityJar.asFile): + '28A6697BDF6D9500EC0AF9C1C949B9F3ED7DDFDA649CB5CAC4BEEA2E9567570A', + (mavenizerSourcePatch.asFile): + 'C083263ACB0D562C3328231D019C748A288211453A74B132EA55A68A90B83251', + (mavenizerLicense.asFile): + '7FFE1954587C77DFBA1CF8EB9B2EA743671FA6E63F9E7A2F258119D42E14EEFE', + (mavenizerReadme.asFile): + '264112A68051E50042EC9F72DE2F406758344A4CB5BB9AC69BC3284C3D9C4917' +] + +[mavenizerCompatibilityJar.asFile, mavenizerSourcePatch.asFile].each { fixture -> + if (!fixture.isFile()) { + throw new GradleException("Missing Mavenizer compatibility fixture: ${fixture}") } - maven { - name = 'sonatype' - url = 'https://oss.sonatype.org/content/groups/public' + String actual = sha256Of(fixture) + String expected = mavenizerFixtureChecksums[fixture] + if (actual != expected) { + throw new GradleException("Mavenizer compatibility fixture checksum mismatch for " + + "${fixture.name}: expected ${expected}, found ${actual}") } - } - dependencies { - classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: project.fg_version, changing: true - } } -plugins { - id 'com.matthewprenger.cursegradle' version '1.4.0' - id 'org.sonarqube' version '2.8' - id 'se.bjurr.gitchangelog.git-changelog-gradle-plugin' version '1.60' - id 'maven-publish' - id 'jacoco' - //id 'checkstyle' // 2.7 or later -} - -apply plugin: 'net.minecraftforge.gradle' -apply plugin: 'eclipse' -apply plugin: 'idea' -apply plugin: 'maven-publish' -apply plugin: 'pmd' -apply from: 'https://raw.githubusercontent.com/SizableShrimp/Forge-Class-Remapper/main/classremapper.gradle' - -project.afterEvaluate { - jacoco { - toolVersion = '0.8.3' - } - - // create junit platform jacoco task - project.task(type: JacocoReport, 'junitPlatformJacocoReport', - { - if (GradleVersion.current() >= GradleVersion.version('5.0')) { - getSourceDirectories().from(files('./src/main')) - getClassDirectories().from(files("${project.buildDir}/classes/main")) - } else { - sourceDirectories = files('./src/main') - classDirectories = files("${project.buildDir}/classes/main") - } - }) -} - -//if (GradleVersion.current() >= GradleVersion.version('2.7')) { -// checkstyle { -// ignoreFailures = true -// toolVersion = '8.20' // 5.7 is default -// showViolations = false -// } -//} - -pmd { - consoleOutput = false - ignoreFailures = true - sourceSets = [sourceSets.main] - reportsDir = file("$project.buildDir/reports/pmd") - // rulePriority = 5 // ### - ruleSets = [ - 'java-android', - 'java-basic', - 'java-braces', - 'java-clone', - 'java-codesize', - 'java-comments', - 'java-controversial', - 'java-coupling', - 'java-design', - 'java-empty', - 'java-finalizers', - 'java-imports', - 'java-j2ee', - 'java-javabeans', - 'java-junit', - 'java-logging-jakarta-commons', - 'java-logging-java', - 'java-migrating', - 'java-migrating_to_junit4', - 'java-naming', - 'java-optimizations', - 'java-strictexception', - 'java-strings', - 'java-sunsecure', - 'java-typeresolution', - 'java-unnecessary', - 'java-unusedcode' - ] - toolVersion = '6.19.0'; - if (GradleVersion.current() >= GradleVersion.version('5.6')) { - } -} - -tasks.withType(JavaCompile) { - options.encoding = 'UTF-8' - options.compilerArgs = [ - '-Xlint:deprecation', // deprecation, rawtypes, cast, unchecked, all - ] - compileJava.options.compilerArgs += '-proc:none' -} - -tasks.withType(Test) { - compileTestJava.options.compilerArgs += '-proc:none' -} - -javadoc { - failOnError = false -} - -import org.gradle.util.GradleVersion -test { - if (GradleVersion.current() >= GradleVersion.version('4.6')) { - useJUnitPlatform() - } -} - -project.ext.short_version = getModVersion('VERSION') -version = (project.hasProperty('mc_version') ? project.mc_version : project.forge_mc_version) + '-' + short_version -project.ext.display_version = short_version - -if ((System.getenv('BUILD_NUMBER')) || (System.getenv('TRAVIS_BUILD_NUMBER')) || (System.getenv('CIRCLE_BUILD_NUM'))) { - version += '.' + buildNumber - display_version += '.' + buildNumber -} - -static String getBuildNumber() { - return System.getenv('BUILD_NUMBER') ?: System.getenv('TRAVIS_BUILD_NUMBER') ?: System.getenv('CIRCLE_BUILD_NUM') ?: '0' -} - -java.toolchain.languageVersion = JavaLanguageVersion.of(17) - -eclipse.project { - buildCommand 'org.eclipse.buildship.core.gradleprojectbuilder' - natures 'org.eclipse.buildship.core.gradleprojectnature' -} - -idea.module { - downloadJavadoc = true +fgtools.configure('mavenizer') { + classpath.from(mavenizerCompatibilityJar) + mainClass.set('net.minecraftforge.mcmaven.cli.Main') + javaLauncher.set(javaToolchains.launcherFor { + languageVersion = JavaLanguageVersion.of(25) + vendor = JvmVendorSpec.ADOPTIUM + }) } -class Secrets { - Map m_data = null +group = project.mod_group +version = project.mod_version +base.archivesName = project.mod_archive_name - final String getProperty(final String key) { - return (m_data && (m_data[key] != null)) ? m_data[key] : '' - } -} - -final def secretFile -if (System.getenv('SECRET_FILE')) { - secretFile = file System.getenv().SECRET_FILE -} else { - secretFile = file 'secret.json' +def versionParts = project.mod_version.toString().tokenize('.') +if (versionParts.size() != 4 || !versionParts.every { it ==~ /\d+/ }) { + throw new GradleException("mod_version must use Major.Minor.Bug.Target numeric form: ${project.mod_version}") +} +def minecraftVersionParts = project.minecraft_version.toString().tokenize('.') +if (minecraftVersionParts.size() < 2 || minecraftVersionParts.size() > 3 + || !minecraftVersionParts.every { it ==~ /\d+/ }) { + throw new GradleException("minecraft_version must use major.minor or major.minor.patch numeric form: ${project.minecraft_version}") +} +def minecraftPatch = minecraftVersionParts.size() == 3 ? minecraftVersionParts[2] : '0' +def expectedTargetVersion = "${minecraftVersionParts[0]}" + + "${minecraftVersionParts[1].padLeft(2, '0')}" + + "${minecraftPatch.padLeft(2, '0')}" + project.loader_code +if (versionParts[3] != expectedTargetVersion) { + throw new GradleException("mod_version target ${versionParts[3]} does not match " + + "Minecraft ${project.minecraft_version} ${project.loader_name} target ${expectedTargetVersion}") } -import groovy.json.JsonSlurper -project.ext.secret = new Secrets() -if (secretFile.exists()) { - secretFile.withReader { - project.secret.m_data = new JsonSlurper().parse it - } -} else { - project.secret.m_data = new JsonSlurper().parseText( - '{ "username" : "' + (System.getenv('userMaven') ?: '') + '",' - + '"password" : "' + (System.getenv('authMaven') ?: '') + '",' - + '"url" : "' + (System.getenv('urlMaven') ?: '') + '",' - + '"curseforgeAPIKey" : "' + (System.getenv('curse_auth') ?: '00000000-0000-0000-0000-000000000000') + '",' - + '"sonarHost" : "' + (System.getenv('SONAR_HOST_URL') ?: 'https://sonarcloud.io') + '",' - + '"sonarOrganization" : "' + (System.getenv('SONAR_ORGANIZATION') ?: '') + '",' - + '"sonarToken" : "' + (System.getenv('SONAR_AUTH_TOKEN') ?: 0) + '"}' - ) +ext.functional_version = versionParts[0..2].join('.') +ext.display_version = project.mod_version +ext.release_tag = project.mod_version + +if (GradleVersion.current() != GradleVersion.version('9.6.1')) { + throw new GradleException("This build requires Gradle 9.6.1, found ${GradleVersion.current()}") +} +// Buildship normally launches Gradle with the JVM that runs Eclipse. Gradle 9.6.1 +// supports newer JVMs, while compilation remains pinned to Temurin Java 17. +if (!JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_17)) { + throw new GradleException("Gradle requires Java 17 or newer, found ${System.getProperty('java.version')}") } -minecraft { - mappings channel: project.mcp_mappings_channel, version: project.mcp_mappings_version +def java17Compiler = javaToolchains.compilerFor { + languageVersion = JavaLanguageVersion.of(17) + vendor = JvmVendorSpec.ADOPTIUM +} +def java17Launcher = javaToolchains.launcherFor { + languageVersion = JavaLanguageVersion.of(17) + vendor = JvmVendorSpec.ADOPTIUM +} + +java { + toolchain { + languageVersion = JavaLanguageVersion.of(17) + vendor = JvmVendorSpec.ADOPTIUM + } + withSourcesJar() + withJavadocJar() +} + +tasks.withType(JavaCompile).configureEach { + javaCompiler = java17Compiler + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + options.encoding = 'UTF-8' + options.compilerArgs.addAll(['-Xlint:deprecation', '-Xmaxerrs', '1000']) +} + +tasks.named('compileTestJava', JavaCompile) { + options.compilerArgs.add('-proc:none') +} + +tasks.withType(Javadoc).configureEach { + failOnError = false + options.encoding = 'UTF-8' + options.addStringOption('Xdoclint:none', '-quiet') + options.addBooleanOption('notimestamp', true) +} - if (project.hasProperty('core_plugin')) { - clientJvmArgs += "-Dfml.coreMods.load=${project.core_plugin}" - serverJvmArgs += "-Dfml.coreMods.load=${project.core_plugin}" - } +tasks.withType(AbstractArchiveTask).configureEach { + preserveFileTimestamps = false + reproducibleFileOrder = true +} - if (project.hasProperty('mc_username')) { - clientRunArgs += ['--username', project.mc_username] - if (project.hasProperty('mc_password')) { - clientRunArgs += ['--password', project.mc_password] +def archiveTextSuffixes = [ + '.cfg', '.css', '.html', '.info', '.java', '.js', '.json', '.lang', + '.mcmeta', '.md', '.properties', '.txt', '.xml', '.toml' +] +def archiveTextPatterns = archiveTextSuffixes.collect { "**/*${it}".toString() } +archiveTextPatterns.addAll(['**/element-list', '**/package-list']) +def optionalIntegrationExpectedCounts = [ + byg : [recipes: 1053, advancements: 1053], + biomesoplenty : [recipes: 429, advancements: 429], + immersiveengineering: [recipes: 38, advancements: 38] +] +def normalizeArchiveLineEndings = { details -> + details.filter(FixCrLfFilter, + eol: FixCrLfFilter.CrLf.newInstance('lf'), + eof: FixCrLfFilter.AddAsisRemove.newInstance('asis')) +} + +tasks.register('verifyBuildEnvironment') { + group = 'verification' + description = 'Verifies the supported Gradle runtime and Temurin Java 17 compiler toolchain.' + doLast { + def metadata = java17Compiler.get().metadata + String vendor = metadata.vendor.toString().toLowerCase(Locale.ROOT) + if (metadata.languageVersion.asInt() != 17 + || !(vendor.contains('eclipse temurin') || vendor.contains('eclipse adoptium'))) { + throw new GradleException("Java compiler toolchain must be Eclipse Temurin Java 17; " + + "found ${metadata.vendor} ${metadata.javaRuntimeVersion} at ${metadata.installationPath}") + } } - } - if (project.hasProperty('mc_uuid')) { - clientRunArgs += ['--uuid', project.mc_uuid] - } +} - if (getBooleanProperty('mc_server_nogui')) { - serverRunArgs += 'nogui' - } +tasks.withType(JavaCompile).configureEach { + dependsOn tasks.named('verifyBuildEnvironment') +} - if (getBooleanProperty('forge_do_not_backup')) { - serverJvmArgs += '-Dfml.doNotBackup=true' - clientJvmArgs += '-Dfml.doNotBackup=true' - } +def eclipseWorkspaceProjectName = 'IronAgeFurniture' +eclipse { + project { + name = eclipseWorkspaceProjectName + buildCommand 'org.eclipse.buildship.core.gradleprojectbuilder' + natures 'org.eclipse.buildship.core.gradleprojectnature' + } + classpath { + downloadSources = true + downloadJavadoc = true + } + synchronizationTasks 'isolateEclipseProductionRuns' +} + +idea { + module { + downloadSources = true + downloadJavadoc = true + } +} + +minecraft { + mappings channel: project.mcp_mappings_channel, version: project.mcp_mappings_version + + runs { + configureEach { + workingDir.convention layout.projectDirectory.dir( + providers.gradleProperty('runDirectory').getOrElse('run')) + jvmArgs '--add-opens', 'java.base/java.lang.invoke=ALL-UNNAMED' + systemProperty 'forge.logging.markers', 'REGISTRIES' + systemProperty 'forge.logging.console.level', 'debug' + mods { + ironagefurniture { source sourceSets.main } + } + } + register('client') + register('server') { + args '--nogui' + } + register('data') { + workingDir.convention layout.projectDirectory.dir('run-data') + args '--mod', project.mod_id, '--all', '--output', + file('src/generated/resources/'), '--existing', file('src/main/resources/') + } + } +} - if (getBooleanProperty('forge_query_result_confirm')) { - serverJvmArgs += '-Dfml.queryResult=confirm' - } +sourceSets.main.resources.srcDir 'src/generated/resources' - if (getBooleanProperty('log4j_skip_jansi')) { - serverJvmArgs += '-Dlog4j.skipJansi=true' - clientJvmArgs += '-Dlog4j.skipJansi=true' - } +def developmentModOutput = layout.buildDirectory.dir('forge-run-mod-classes/main') +def prepareDevelopmentMod = tasks.register('prepareDevelopmentMod', Sync) { + group = 'ide' + description = 'Merges production classes and resources for Forge 40 development discovery.' + dependsOn tasks.named('classes') + from sourceSets.main.output.classesDirs + from sourceSets.main.output.resourcesDir + into developmentModOutput +} - if (project.hasProperty('mc_resolution')) { - final def res = [ - '480p': [640, 480], - '576p': [640, 576], - '720p': [1280, 720], - '1080p': [1920, 1080], - 'custom': [project.findProperty('mc_custom_resolution_width'), project.findProperty('mc_custom_resolution_height')]] - final def choice = res?.get(project.mc_resolution) - if (choice != null) { - clientRunArgs += ['--width', choice[0]] - clientRunArgs += ['--height', choice[1]] +tasks.withType(JavaExec).configureEach { JavaExec runTask -> + if (['runClient', 'runServer', 'runData'].contains(runTask.name)) { + runTask.dependsOn prepareDevelopmentMod + runTask.environment 'MOD_CLASSES', "${project.mod_id}%%${developmentModOutput.get().asFile}" + runTask.doFirst { + File modsDirectory = new File(runTask.workingDir, 'mods') + if (!modsDirectory.isDirectory() && !modsDirectory.mkdirs()) { + throw new GradleException("Could not create development mods directory: ${modsDirectory}") + } + } } - } +} - if (project.hasProperty('client_jvm_args')) { - clientJvmArgs += project.client_jvm_args - } - if (project.hasProperty('server_jvm_args')) { - serverJvmArgs += project.server_jvm_args - } +repositories { + minecraft.mavenizer(it) + maven fg.forgeMaven + maven fg.minecraftLibsMaven + mavenCentral() +} - if (project.hasProperty('client_game_args')) { - clientRunArgs += project.client_game_args - } - if (project.hasProperty('server_game_args')) { - serverRunArgs += project.server_game_args - } +dependencies { + implementation minecraft.dependency( + "net.minecraftforge:forge:${project.minecraft_version}-${project.forge_version}") + testImplementation 'junit:junit:4.13.2' +} - if (project.hasProperty('mod_at_file')) { - accessTransformer = file(findProperty('mod_at_file')) - } - runs { - client { - workingDirectory project.file('run') +renamer.mappings.from minecraft.dependency.toSrgFile - taskName "${project.name} Client" +tasks.withType(Test).configureEach { + workingDir = project.projectDir +} - property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' - property 'forge.logging.console.level', 'debug' +def optionalIntegrationManifestFile = layout.projectDirectory.file( + 'gradle/verification/optional-integration-mods.json') +def optionalIntegrationRunDirectory = layout.projectDirectory.dir('run-optional-integrations') +def optionalIntegrationServerDirectory = providers.gradleProperty('optionalIntegrationServerDir') + .map { project.file(it) } + .orElse(optionalIntegrationRunDirectory.asFile) +def optionalIntegrationModsDirectory = optionalIntegrationServerDirectory + .map { new File(it, 'mods') } +def optionalIntegrationFixtureClasses = layout.buildDirectory.dir( + 'optional-integration-fixture/classes') +def optionalIntegrationFixtureGeneratedResources = layout.buildDirectory.dir( + 'optional-integration-fixture/generated-resources') + +tasks.register('verifyOptionalIntegrationMods') { + group = 'verification' + description = 'Verifies the pinned third-party jars for the positive optional-integration test.' + inputs.file optionalIntegrationManifestFile + doLast { + Map manifest = new JsonSlurper().parse(optionalIntegrationManifestFile.asFile) as Map + if (manifest.minecraft != project.minecraft_version.toString() + || !(manifest.mods instanceof List) || manifest.mods.size() != 4) { + throw new GradleException('Optional-integration mod manifest is incomplete or targets the wrong game') + } + File modsDirectory = optionalIntegrationModsDirectory.get() + Map integrationJars = [:] + manifest.mods.each { mod -> + File candidate = new File(modsDirectory, mod.file.toString()) + if (!candidate.isFile()) { + throw new GradleException("Missing optional-integration test mod ${candidate.name} in " + + modsDirectory) + } + String actual = sha256Of(candidate) + if (!actual.equalsIgnoreCase(mod.sha256.toString())) { + throw new GradleException("Checksum mismatch for optional-integration test mod " + + "${candidate.name}: expected ${mod.sha256}, found ${actual}") + } + new ZipFile(candidate).withCloseable { ZipFile zip -> + def metadataEntry = zip.getEntry('META-INF/mods.toml') + if (metadataEntry == null) { + throw new GradleException("${candidate.name} has no META-INF/mods.toml") + } + String metadata = zip.getInputStream(metadataEntry) + .withCloseable { it.getText('UTF-8') } + if (!(metadata =~ /modId\s*=\s*["']${java.util.regex.Pattern.quote(mod.modId.toString())}["']/).find()) { + throw new GradleException("${candidate.name} does not declare mod ID ${mod.modId}") + } + } + if (mod.role == 'integration') integrationJars[mod.modId.toString()] = candidate + } - mods { - ironagefurniture { - source sourceSets.main + Map> externalTextures = integrationJars.keySet().collectEntries { + [(it): new TreeSet()] + } + fileTree('src/main/resources/assets/ironagefurniture/models') { include '**/*.json' } + .files.each { model -> + String text = model.getText('UTF-8') + integrationJars.keySet().each { modId -> + def matcher = text =~ /["']${java.util.regex.Pattern.quote(modId)}:([^"']+)["']/ + matcher.each { match -> + String path = match[1].toString() + if (path.startsWith('block/') || path.startsWith('item/')) { + externalTextures[modId].add("assets/${modId}/textures/${path}.png") + } + } + } + } + externalTextures.each { modId, paths -> + new ZipFile(integrationJars[modId]).withCloseable { ZipFile zip -> + Collection missing = paths.findAll { zip.getEntry(it) == null } + if (!missing.isEmpty()) { + throw new GradleException("${integrationJars[modId].name} is missing referenced " + + "textures: ${missing}") + } + } } - } } +} - server { - workingDirectory project.file('run') +tasks.register('generateOptionalIntegrationFixtureData') { + group = 'verification' + description = 'Generates the exact conditional recipe and advancement IDs for the runtime probe.' + File recipeRoot = file('src/main/resources/data/ironagefurniture/recipes') + File advancementRoot = file('src/main/resources/data/ironagefurniture/advancements') + inputs.files fileTree(recipeRoot) { include '**/*.json' } + inputs.files fileTree(advancementRoot) { include '**/*.json' } + outputs.dir optionalIntegrationFixtureGeneratedResources + doLast { + Map recipeCounts = optionalIntegrationExpectedCounts.collectEntries { + modId, counts -> [(modId): 0] + } + Map advancementCounts = optionalIntegrationExpectedCounts.collectEntries { + modId, counts -> [(modId): 0] + } + List recipes = [] + fileTree(recipeRoot) { include '**/*.json' }.files.each { recipeFile -> + Map recipe = new JsonSlurper().parse(recipeFile) as Map + List matching = recipe.conditions instanceof List + ? recipe.conditions.findAll { condition -> + condition instanceof Map && condition.type == 'forge:mod_loaded' + && optionalIntegrationExpectedCounts.containsKey(condition.modid) + } as List : [] + if (matching.size() == 1) { + String modId = matching[0].modid + String path = recipeRoot.toPath().relativize(recipeFile.toPath()).toString() + .replace('\\', '/').replaceFirst(/\.json$/, '') + recipes.add("${modId}=ironagefurniture:${path}") + recipeCounts[modId]++ + } + } + List advancements = [] + fileTree(advancementRoot) { include '**/*.json' }.files.each { advancementFile -> + Map wrapper = new JsonSlurper().parse(advancementFile) as Map + List branches = wrapper.advancements instanceof List ? wrapper.advancements : [] + List matching = branches.size() == 1 && branches[0].conditions instanceof List + ? branches[0].conditions.findAll { condition -> + condition instanceof Map && condition.type == 'forge:mod_loaded' + && optionalIntegrationExpectedCounts.containsKey(condition.modid) + } as List : [] + if (matching.size() == 1) { + String modId = matching[0].modid + String path = advancementRoot.toPath().relativize(advancementFile.toPath()).toString() + .replace('\\', '/').replaceFirst(/\.json$/, '') + advancements.add("${modId}=ironagefurniture:${path}") + advancementCounts[modId]++ + } + } + optionalIntegrationExpectedCounts.each { modId, expected -> + if (recipeCounts[modId] != expected.recipes + || advancementCounts[modId] != expected.advancements) { + throw new GradleException("Unexpected ${modId} fixture inventory: " + + "${recipeCounts[modId]} recipes and ${advancementCounts[modId]} advancements") + } + } + File output = optionalIntegrationFixtureGeneratedResources.get().asFile + output.mkdirs() + new File(output, 'expected-conditional-recipes.txt') + .setText(recipes.sort().join('\n') + '\n', 'UTF-8') + new File(output, 'expected-conditional-advancements.txt') + .setText(advancements.sort().join('\n') + '\n', 'UTF-8') + } +} + +tasks.register('compileOptionalIntegrationFixture', JavaCompile) { + group = 'verification' + description = 'Compiles the test-only Forge probe for positive optional-integration validation.' + dependsOn tasks.named('classes') + source fileTree('src/optionalIntegrationTest/java') + classpath = files(sourceSets.main.output, sourceSets.main.compileClasspath) + destinationDirectory = optionalIntegrationFixtureClasses + javaCompiler = java17Compiler + options.encoding = 'UTF-8' + options.release = 17 + options.compilerArgs.add('-proc:none') +} - taskName "${project.name} Server" +def optionalIntegrationFixtureDeobfJar = tasks.register( + 'optionalIntegrationFixtureDeobfJar', Jar) { + group = 'verification' + description = 'Builds the development-named optional-integration runtime probe.' + dependsOn tasks.named('compileOptionalIntegrationFixture') + dependsOn tasks.named('generateOptionalIntegrationFixtureData') + archiveFileName = 'ironagefurniture-optional-integration-probe-deobf.jar' + destinationDirectory = layout.buildDirectory.dir('optional-integration-fixture') + from optionalIntegrationFixtureClasses + from 'src/optionalIntegrationTest/resources' + from optionalIntegrationFixtureGeneratedResources + filesMatching(archiveTextPatterns, normalizeArchiveLineEndings) +} - property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' - property 'forge.logging.console.level', 'debug' +def optionalIntegrationFixtureJarFile = layout.buildDirectory.file( + 'optional-integration-fixture/ironagefurniture-optional-integration-probe.jar') +def reobfOptionalIntegrationFixtureJar = renamer.classes(optionalIntegrationFixtureDeobfJar) { + map.from minecraft.dependency.toSrgFile + output = optionalIntegrationFixtureJarFile +} + +tasks.register('optionalIntegrationFixtureJar') { + group = 'verification' + description = 'Builds the non-published packaged-server optional-integration probe.' + dependsOn reobfOptionalIntegrationFixtureJar + outputs.file optionalIntegrationFixtureJarFile +} - mods { - ironagefurniture { - source sourceSets.main +tasks.register('stageOptionalIntegrationFixture', Copy) { + group = 'verification' + description = 'Stages the verified runtime probe beside the locally supplied integration mods.' + dependsOn tasks.named('verifyOptionalIntegrationMods') + dependsOn tasks.named('optionalIntegrationFixtureJar') + dependsOn tasks.named('assemble') + from optionalIntegrationFixtureJarFile + from layout.buildDirectory.file( + "libs/${base.archivesName.get()}-${project.version}.jar") + into optionalIntegrationModsDirectory +} + +tasks.register('runOptionalIntegrationServer', Exec) { + group = 'verification' + description = 'Runs the packaged Forge server and proves all optional recipes are loaded.' + dependsOn tasks.named('stageOptionalIntegrationFixture') + doFirst { + File serverDirectory = optionalIntegrationServerDirectory.get() + File probeWorld = new File(serverDirectory, 'world') + if (probeWorld.exists() && !project.delete(probeWorld)) { + throw new GradleException("Could not reset optional-integration probe world ${probeWorld}") + } + File marker = new File(serverDirectory, 'optional-integration-pass.properties') + if (marker.exists() && !marker.delete()) { + throw new GradleException("Could not remove stale optional-integration marker ${marker}") + } + new File(serverDirectory, 'eula.txt').setText('eula=true\n', 'UTF-8') + new File(serverDirectory, 'server.properties').setText([ + 'allow-flight=true', + 'level-name=world', + 'max-tick-time=120000', + 'online-mode=false', + 'server-ip=127.0.0.1', + 'server-port=0', + '' + ].join('\n'), 'UTF-8') + String argumentFileName = System.getProperty('os.name').toLowerCase(Locale.ROOT) + .contains('windows') ? 'win_args.txt' : 'unix_args.txt' + File argumentFile = new File(serverDirectory, + "libraries/net/minecraftforge/forge/${minecraft_version}-${forge_version}/" + + argumentFileName) + File userArguments = new File(serverDirectory, 'user_jvm_args.txt') + if (!argumentFile.isFile() || !userArguments.isFile()) { + throw new GradleException("Install the Forge ${minecraft_version}-${forge_version} " + + "server in ${serverDirectory} before running this test") + } + workingDir serverDirectory + executable java17Launcher.get().executablePath.asFile + args '@user_jvm_args.txt', "@${argumentFile.toPath().toString()}", 'nogui' + } + doLast { + File marker = new File(optionalIntegrationServerDirectory.get(), + 'optional-integration-pass.properties') + if (!marker.isFile()) { + throw new GradleException('Optional-integration server exited without a passing probe marker') + } + Properties result = new Properties() + marker.withInputStream { result.load(it) } + int expectedConditionalRecipes = optionalIntegrationExpectedCounts.values() + .sum { it.recipes } as int + int expectedConditionalAdvancements = optionalIntegrationExpectedCounts.values() + .sum { it.advancements } as int + if (result.getProperty('status') != 'PASS' + || result.getProperty('conditional_recipes_loaded') != expectedConditionalRecipes.toString() + || result.getProperty('conditional_advancements_loaded') != expectedConditionalAdvancements.toString()) { + throw new GradleException("Unexpected optional-integration result ${result}") } - } } - } } -repositories { - mavenLocal() - jcenter() - mavenCentral() +tasks.named('processResources', ProcessResources) { + filteringCharset = 'UTF-8' + def replaceProperties = [ + version : project.version, + minecraft_version : project.minecraft_version, + forge_version : project.forge_version, + forge_version_range : project.forge_version_range, + loader_version_range : project.loader_version_range, + mod_id : project.mod_id, + mod_name : project.mod_name, + mod_license : project.mod_license, + mod_authors : project.mod_authors, + mod_description : project.mod_description + ] + inputs.properties replaceProperties + + filesMatching(['META-INF/mods.toml', 'pack.mcmeta']) { + expand replaceProperties + } + filesMatching(archiveTextPatterns, normalizeArchiveLineEndings) - maven { - name 'MMD' - url 'https://maven.mcmoddev.com/' - } + from('README.md') { + into 'META-INF/ironagefurniture/docs' + } + from('CHANGELOG.md') { + into 'META-INF/ironagefurniture/docs' + } + from('docs/VERSIONS.md') { + into 'META-INF/ironagefurniture/docs' + } } -dependencies { - minecraft "net.minecraftforge:forge:${project.forge_mc_version}-${project.forge_version}" +def commonManifest = { + attributes([ + 'Specification-Title' : project.mod_name, + 'Specification-Vendor' : project.mod_authors, + 'Specification-Version' : versionParts[0], + 'Implementation-Title' : base.archivesName.get(), + 'Implementation-Version' : project.version, + 'Implementation-Vendor' : project.mod_authors, + 'Maven-Artifact' : "${project.group}:${base.archivesName.get()}:${project.version}", + 'Built-On-Java' : project.java_version, + 'Built-On' : "${project.minecraft_version}-${project.forge_version}" + ]) +} - if (GradleVersion.current() >= GradleVersion.version('4.6')) { - annotationProcessor group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.11.0' - } +tasks.named('jar', Jar) { + archiveClassifier = 'deobf' + destinationDirectory = layout.buildDirectory.dir('libs-dev') + manifest(commonManifest) } -import groovy.json.JsonSlurper -import groovy.json.JsonOutput - -processResources { - -doLast { - - def jsonMinifyStart = System.currentTimeMillis() - def jsonMinified = 0 - def jsonBytesSaved = 0 - - fileTree(dir: outputs.files.asPath, include: '**/*.json').each { - - File file = it - jsonMinified++ - def oldLength = file.length() - file.text = JsonOutput.toJson(new JsonSlurper().parse(file)) - jsonBytesSaved += oldLength - file.length() - } - - println('Minified ' + jsonMinified + ' json files. Saved ' + jsonBytesSaved + ' bytes. Took ' + (System.currentTimeMillis() - jsonMinifyStart) + 'ms.') - } - -} - -jar { - manifest { - mainAttributes( - 'Maven-Artifact': "${project.group}:${project.archivesBaseName}:${project.version}", - 'Timestamp': System.currentTimeMillis(), - 'Specification-Title': 'ironagefurniture', - 'Specification-Vendor': 'mcmoddev', - 'Specification-Version': '1', - 'Implementation-Title': project.archivesBaseName, - 'Implementation-Version': project.version, - 'Implementation-Vendor' :'mcmoddev', - 'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"), - 'Built-On-Java': "${System.getProperty('java.vm.version')} (${System.getProperty('java.vm.vendor')})", - 'Built-On': "${project.forge_mc_version}-${project.forge_version}" - ) - if (project.hasProperty('mod_contained_deps')) { - attributes 'ContainedDeps': project.mod_contained_deps - } - } -} - -task deobfJar(type: Jar) { - onlyIf { - getBooleanProperty('create_deobf_jar') - } - - description = 'Creates a JAR containing the non-obfuscated compiled code.' - classifier = 'deobf' - from sourceSets.main.output - manifest { - mainAttributes( - 'Maven-Artifact': "${project.group}:${project.archivesBaseName}:${project.version}:deobf", - 'Timestamp': System.currentTimeMillis(), - 'Specification-Title': 'ironagefurniture', - 'Specification-Vendor': 'mcmoddev', - 'Specification-Version': '1', - 'Implementation-Title': project.name + '-deobf', - 'Implementation-Version': project.version, - 'Implementation-Vendor' :'mcmoddev', - 'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"), - 'Built-On-Java': "${System.getProperty('java.vm.version')} (${System.getProperty('java.vm.vendor')})", - 'Built-On': "${project.forge_mc_version}-${project.forge_version}" - ) - if (project.hasProperty('mod_at_file')) { - attributes 'FMLAT': project.mod_at_file - } - if (project.hasProperty('core_plugin')) { - attributes 'FMLCorePlugin': project.core_plugin - } - } -} - -task sourcesJar(type: Jar, dependsOn: classes) { - onlyIf { - getBooleanProperty('create_source_jar') - } - - description = 'Creates a JAR containing the source code.' - classifier = 'sources' - from sourceSets.main.allSource - manifest { - mainAttributes( - 'Maven-Artifact': "${project.group}:${project.archivesBaseName}:${project.version}:sources", - 'Timestamp': System.currentTimeMillis(), - 'Specification-Title': 'ironagefurniture', - 'Specification-Vendor': 'mcmoddev', - 'Specification-Version': '1', - 'Implementation-Title': project.name + '-sources', - 'Implementation-Version': project.version, - 'Implementation-Vendor' :'mcmoddev', - 'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"), - 'Built-On-Java': "${System.getProperty('java.vm.version')} (${System.getProperty('java.vm.vendor')})", - 'Built-On': "${project.forge_mc_version}-${project.forge_version}" - ) - } -} - -task javadocJar(type: Jar, dependsOn: javadoc) { - onlyIf { - getBooleanProperty('create_javadoc_jar') - } - - description = 'Creates a JAR containing the JavaDocs.' - classifier = 'javadoc' - from javadoc.getDestinationDir() - manifest.mainAttributes( - 'Maven-Artifact': "${project.group}:${project.archivesBaseName}:${project.version}:javadoc", - 'Timestamp': System.currentTimeMillis(), - 'Implementation-Title': project.name + '-javadoc', - 'Implementation-Version': project.version, - 'Built-On-Java': "${System.getProperty('java.vm.version')} + (${System.getProperty('java.vm.vendor')})", - 'Built-On': "${project.forge_mc_version}-${project.forge_version}" - ) -} - -tasks.publish.dependsOn build -tasks.curseforge.dependsOn publish - -artifacts { - if (getBooleanProperty('create_deobf_jar')) { - archives deobfJar - } - if (getBooleanProperty('create_source_jar')) { - archives sourcesJar - } - if (getBooleanProperty('create_javadoc_jar')) { - archives javadocJar - } -} - -//TODO: From Forge MDK -def reobfFile = file("$buildDir/reobfJar/output.jar") -def reobfArtifact = artifacts.add('default', reobfFile) { - type 'jar' - builtBy 'reobfJar' +def releaseJar = renamer.classes(tasks.named('jar', Jar)) { + map.from minecraft.dependency.toSrgFile + archiveClassifier = null + output = layout.buildDirectory.file( + "libs/${base.archivesName.get()}-${project.version}.jar") +} + +tasks.named('sourcesJar', Jar) { + filteringCharset = 'UTF-8' + includeEmptyDirs = false + archiveClassifier = 'sources' + filesMatching(archiveTextPatterns, normalizeArchiveLineEndings) + manifest { + attributes([ + 'Maven-Artifact' : "${project.group}:${base.archivesName.get()}:${project.version}:sources", + 'Implementation-Title' : "${project.mod_name}-sources", + 'Implementation-Version': project.version + ]) + } +} + +tasks.named('javadocJar', Jar) { + filteringCharset = 'UTF-8' + archiveClassifier = 'javadoc' + filesMatching(archiveTextPatterns, normalizeArchiveLineEndings) + manifest { + attributes([ + 'Maven-Artifact' : "${project.group}:${base.archivesName.get()}:${project.version}:javadoc", + 'Implementation-Title' : "${project.mod_name}-javadoc", + 'Implementation-Version': project.version + ]) + } } +['apiElements', 'runtimeElements'].each { configurationName -> + configurations.named(configurationName) { artifacts.clear() } + artifacts { add(configurationName, releaseJar) } +} + +tasks.named('assemble') { + dependsOn releaseJar + dependsOn tasks.named('sourcesJar') + dependsOn tasks.named('javadocJar') +} + +def expectedReleaseFiles = providers.provider { + String prefix = "${base.archivesName.get()}-${project.version}" + ["${prefix}.jar", "${prefix}-sources.jar", "${prefix}-javadoc.jar"] +} +def preparedReleaseDir = providers.gradleProperty('preparedReleaseDir') +def expectedMavenGroup = 'zone.moddev.mc' +def expectedMavenArtifact = 'iron-age-furniture' +def expectedMavenCoordinate = "${expectedMavenGroup}:${expectedMavenArtifact}:${project.version}" + publishing { - publications { - mavenJava(MavenPublication) { - groupId project.group - artifactId project.archivesBaseName - version project.version - from components.java - if (getBooleanProperty('create_source_jar')) { - artifact sourcesJar { - classifier 'sources' - } - } - if (getBooleanProperty('create_deobf_jar')) { - artifact deobfJar { - classifier 'deobf' - } - } - if (getBooleanProperty('create_javadoc_jar')) { - artifact javadocJar { - classifier 'javadoc' - } - } - } - } - repositories { - maven { - if ((secret.username != '') && (secret.password != '')) { - credentials { - username secret.username - password secret.password - } - } - if (secret.url != '') { - url secret.url - } else { - url "file:///${project.buildDir}/repo" - } - } - } -} - -curseforge { - if (project.hasProperty('curseforge_project_id')) { - apiKey = secret.curseforgeAPIKey - project { - id = project.curseforge_project_id - if (project.hasProperty('curseforge_changelog_filename')) { - changelog = file(project.curseforge_changelog_filename) - } else { - changelog = '' - } - if (project.hasProperty('curseforge_changelog_type')) { - changelogType = project.curseforge_changelog_type - } - if ((project.hasProperty('curseforge_release_type')) && ((project.curseforge_release_type == 'alpha') || (project.curseforge_release_type == 'beta') || (project.curseforge_release_type == 'release'))) { - releaseType = project.curseforge_release_type - } else { - releaseType = 'alpha' - } - if (project.hasProperty('curseforge_versions')) { - final def versions = "${project.curseforge_versions}".split(', ') - versions.each { - addGameVersion "${it}" - } - } - mainArtifact(jar) { - if (getBooleanProperty('curseforge_use_custom_display_name')) { - displayName = "${project.name} ${project.display_version}" - } - if (project.hasProperty('curseforge_requirements') || project.hasProperty('curseforge_optionals') || project.hasProperty('curseforge_embeddeds') || project.hasProperty('curseforge_tools') || project.hasProperty('curseforge_incompatibles') || project.hasProperty('curseforge_includes')) { - relations { - if (project.hasProperty('curseforge_requirements')) { - final def requirements = "${project.curseforge_requirements}".split(', ') - requirements.each { - requiredDependency "${it}" - } - } - if (project.hasProperty('curseforge_optionals')) { - final def optionals = "${project.curseforge_optionals}".split(', ') - optionals.each { - optionalDependency "${it}" - } - } - if (project.hasProperty('curseforge_embeddeds')) { - final def embeddeds = "${project.curseforge_embeddeds}".split(', ') - embeddeds.each { - embeddedLibrary "${it}" - } - } - if (project.hasProperty('curseforge_tools')) { - final def tools = "${project.curseforge_tools}".split(', ') - tools.each { - tool "${it}" - } - } - if (project.hasProperty('curseforge_incompatibles')) { - final def incompatibles = "${project.curseforge_incompatibles}".split(', ') - incompatibles.each { - incompatible "${it}" - } - } - if (project.hasProperty('curseforge_includes')) { - final def includes = "${project.curseforge_includes}".split(', ') - includes.each { - include "${it}" - } - } - } - } - } - if (getBooleanProperty('create_source_jar')) { - addArtifact(sourcesJar) { - if (getBooleanProperty('curseforge_use_custom_display_name')) { - displayName = "${project.name} ${project.display_version} Sources" - } - } - } - if (getBooleanProperty('create_deobf_jar')) { - addArtifact(deobfJar) { - if (getBooleanProperty('curseforge_use_custom_display_name')) { - displayName = "${project.name} ${project.display_version} Development" - } - } - } - if (getBooleanProperty('create_javadoc_jar')) { - addArtifact(javadocJar) { - if (getBooleanProperty('curseforge_use_custom_display_name')) { - displayName = "${project.name} ${project.display_version} Javadoc" - } - } - } - } - } -} - -sonarqube { - properties { - if (project.hasProperty('sonar_host_url')) { - property 'sonar.host.url', project.sonar_host_url - } else if (secret.sonarHost != '') { - property 'sonar.host.url', secret.sonarHost - } - property 'sonar.login', secret.sonarToken - if (project.hasProperty('sonar_organisation')) { - property 'sonar.organization', project.sonar_organisation - } else if (secret.sonarOrganisation != '') { - property 'sonar.organization', secret.sonarOrganization - } - property 'sonar.junit.reportPaths', "${project.buildDir}/test-results/junit-platform/*.xml" - property 'sonar.jacoco.reportPaths', "${project.buildDir}/jacoco/junitPlatformTest.exec" - } -} - -String getModFile() { - String path = '' - final FileTree tree = fileTree(dir: 'src/main/java') - tree.include '**/*.java' - tree.visit { final element -> - if (element.file.isFile()) { - element.file.eachLine { final String s -> - final String sTrim = s.trim() - if (sTrim.startsWith('@Mod(')) { - path = "src/main/java/${element.relativePath}" - } - } - } - } - return path -} - -String getModVersion(final String type) { - return getModVersion(type, modFile) -} - -import java.util.regex.Matcher -String getModVersion(final String type, final String modFile) { - if ((modFile != null) && (modFile != '')) { - final File file = file(modFile) - final def prefix = ~/^(?:\s*)(?:(?public|protected|private) )?(?:(?static) )?(?:(?final) )?String $type = "(?:(?\d*)\.)?(?:(?\d*)\.)?(?:(?[^."]*)\.?)(?[^"]*)";$/ - for (final String s in file.readLines()) { - final Matcher matcher = (s.trim() =~ prefix) - if (matcher.matches()) { - return "${matcher.group('major') ?: '0'}.${matcher.group('minor') ?: '0'}.${matcher.group('patch')}" - } - } - } - return '0.0.0' -} - -boolean getBooleanProperty(final String property) { - if (project.hasProperty(property)) { - return ((String) project.findProperty(property)).toBoolean() - } else { - return false - } -} - -task gitChangelog(type: se.bjurr.gitchangelog.plugin.gradle.GitChangelogTask) { - file = new File('CHANGELOG.md') - gitHubIssuePattern = "nonada123" - templateContent = file('changelog.mustache').getText('UTF-8') -} + publications { + mavenJava(MavenPublication) { + groupId = project.group.toString() + artifactId = base.archivesName.get() + version = project.version.toString() + if (preparedReleaseDir.isPresent()) { + File prepared = file(preparedReleaseDir.get()) + artifact(new File(prepared, expectedReleaseFiles.get()[0])) + artifact(new File(prepared, expectedReleaseFiles.get()[1])) { classifier = 'sources' } + artifact(new File(prepared, expectedReleaseFiles.get()[2])) { classifier = 'javadoc' } + } else { + artifact(releaseJar) + artifact(tasks.named('sourcesJar')) + artifact(tasks.named('javadocJar')) + } + pom { + name = project.mod_name + description = project.mod_description + url = 'https://github.com/MinecraftModDevelopmentMods/IronAgeFurniture' + licenses { + license { + name = 'GNU Lesser General Public License, Version 2.1' + url = 'https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt' + } + } + scm { + connection = 'scm:git:https://github.com/MinecraftModDevelopmentMods/IronAgeFurniture.git' + developerConnection = 'scm:git:ssh://git@github.com/MinecraftModDevelopmentMods/IronAgeFurniture.git' + url = 'https://github.com/MinecraftModDevelopmentMods/IronAgeFurniture' + } + } + } + } + repositories { + maven { + name = 'release' + url = uri(providers.environmentVariable('MAVEN_UPLOAD_URL') + .orElse('https://invalid.invalid/missing-maven-upload-url').get()) + credentials { + username = providers.environmentVariable('MAVEN_UPLOAD_USERNAME').orNull ?: '' + password = providers.environmentVariable('MAVEN_UPLOAD_PASSWORD').orNull ?: '' + } + } + } +} + +tasks.register('verifyMavenCoordinates') { + group = 'verification' + description = 'Verifies the generated POM and manifest publication namespace.' + dependsOn tasks.named('generatePomFileForMavenJavaPublication') + doLast { + File pomFile = layout.buildDirectory.file('publications/mavenJava/pom-default.xml').get().asFile + def pom = new XmlSlurper(false, false).parse(pomFile) + def actual = [pom.groupId.text(), pom.artifactId.text(), pom.version.text()] + def expected = [expectedMavenGroup, expectedMavenArtifact, project.version.toString()] + if (project.group.toString() != expectedMavenGroup || actual != expected) { + throw new GradleException("Expected Maven coordinate ${expected.join(':')}, found ${actual.join(':')}") + } + } +} + +tasks.register('verifyMavenizerCompatibilityFixture') { + group = 'verification' + description = 'Verifies the sealed Forge 1.18.2 Mavenizer compatibility tool.' + inputs.files mavenizerFixtureChecksums.keySet() + doLast { + mavenizerFixtureChecksums.each { fixture, expected -> + if (!fixture.isFile() || sha256Of(fixture) != expected) { + throw new GradleException("Mavenizer fixture is missing or changed: ${fixture}") + } + } + new ZipFile(mavenizerCompatibilityJar.asFile).withCloseable { ZipFile zip -> + Manifest fixtureManifest = new Manifest( + zip.getInputStream(zip.getEntry('META-INF/MANIFEST.MF'))) + if (fixtureManifest.mainAttributes.getValue('Main-Class') != + 'net.minecraftforge.mcmaven.cli.Main') { + throw new GradleException('Mavenizer compatibility fixture has an unexpected main class') + } + } + if (!mavenizerReadme.asFile.getText('UTF-8').contains('Forge 1.18.2') + || !mavenizerSourcePatch.asFile.getText('UTF-8').contains('Holder.java') + || !mavenizerLicense.asFile.getText('UTF-8').contains('GNU LESSER GENERAL PUBLIC LICENSE')) { + throw new GradleException('Mavenizer provenance, patch, or license documentation is incomplete') + } + } +} + +tasks.register('verifyReleaseConfiguration') { + group = 'verification' + description = 'Verifies the exact IronAgeFurniture 1.18.2 release identity.' + dependsOn tasks.named('verifyMavenizerCompatibilityFixture') + doLast { + Map expected = [ + mod_version : '0.3.0.118021', + mod_group : 'zone.moddev.mc', + mod_archive_name : 'iron-age-furniture', + mod_id : 'ironagefurniture', + minecraft_version : '1.18.2', + loader_name : 'forge', + loader_code : '1', + forge_version : '40.3.0', + forge_version_range : '[40.3.0,41)', + loader_version_range : '[40,)', + mcp_mappings_channel : 'official', + mcp_mappings_version : '1.18.2', + java_version : '17', + java_toolchain_version : '17.0.1+12', + gradle_java_version : '17', + curseforge_project_id : '341834', + mod_license : 'LGPL-2.1' + ] + expected.each { key, value -> + if (!project.hasProperty(key) || project.property(key).toString() != value) { + throw new GradleException("Unexpected ${key}: ${project.findProperty(key)}") + } + } + } +} + +tasks.register('verifyRepositoryHygiene') { + group = 'verification' + description = 'Rejects tracked generated output, IDE state, secrets, legacy CI, and machine paths.' + doLast { + byte[] trackedBytes = providers.exec { + commandLine 'git', 'ls-files', '-z' + }.standardOutput.asBytes.get() + List tracked = new String(trackedBytes, StandardCharsets.UTF_8) + .split('\u0000').findAll { !it.isEmpty() } + Set forbiddenDirectories = [ + '.agent', '.agents', '.ci-dependencies', '.claude', '.codex', '.eclipse', + '.gradle', '.gradle-home', '.idea', '.metadata', '.settings', 'agent-notes', + 'bin', 'build', 'classes', 'crash-reports', 'eclipse', 'evidence', 'logs', + 'mcmodsrepo', 'out', 'reports', 'run', 'run-data', 'test-output', 'test-results' + ] as Set + Set forbiddenFiles = [ + '.classpath', '.project', '.travis.yml', 'agent.md', 'agents.md', + 'local.properties', 'secret.json' + ] as Set + List forbidden = tracked.findAll { path -> + if (!file(path).exists()) return false + List segments = path.tokenize('/') + String fileName = segments.last().toLowerCase(Locale.ROOT) + List parents = segments.size() > 1 ? segments[0..-2] : [] + parents.any { forbiddenDirectories.contains(it.toLowerCase(Locale.ROOT)) } + || forbiddenFiles.contains(fileName) + || fileName ==~ /(?:agent|codex)-.*\.md/ + || ['.launch', '.keystore', '.jks', '.p12', '.jfr', '.hprof', '.log'] + .any { fileName.endsWith(it) } + } + if (!forbidden.isEmpty()) { + throw new GradleException("Tracked generated, IDE, legacy CI, or secret files: ${forbidden}") + } + tracked.findAll { path -> + String fileName = new File(path).name + file(path).isFile() && (archiveTextSuffixes.any { fileName.endsWith(it) } + || ['.gitattributes', '.gitignore', 'gradlew'].contains(fileName)) + }.each { path -> + String contents = file(path).getText('UTF-8') + if (contents ==~ /(?s).*(?:[A-Za-z]:[\\\/]Users[\\\/]|\/home\/[^\/]+\/).*/) { + throw new GradleException("Tracked text file contains an absolute machine path: ${path}") + } + } + } +} + +tasks.register('verifyObjectHolderContract') { + group = 'verification' + description = 'Ensures optional furniture cannot create missing ObjectHolder lookup noise.' + doLast { + File holderFile = file('src/main/java/zone/moddev/mc/ironagefurniture/BlockObjectHolder.java') + String holder = holderFile.getText('UTF-8') + List furnitureHolders = (holder =~ /public static final Block\s+(chair_wood_[A-Za-z0-9_]+)/) + .collect { it[1] } + if (furnitureHolders != ['chair_wood_ironage_classic_dark_oak']) { + throw new GradleException('Furniture ObjectHolders create missing-registry startup noise: ' + + furnitureHolders) + } + List obsoleteStates = (holder =~ /public static final Block\s+([A-Za-z0-9_]*(?:_left_|_middle_|_right_)[A-Za-z0-9_]*)/) + .collect { it[1] } + if (!obsoleteStates.isEmpty()) { + throw new GradleException('Obsolete connected-bench ObjectHolders remain: ' + obsoleteStates) + } + + String itemInitialiser = file( + 'src/main/java/zone/moddev/mc/ironagefurniture/init/ItemInitialiser.java').getText('UTF-8') + if (itemInitialiser.contains('BlockObjectHolder.class.getDeclaredField') + || !itemInitialiser.contains('ForgeRegistries.BLOCKS.getValue')) { + throw new GradleException('Furniture items must resolve registered blocks without reflective ObjectHolder lookup') + } + } +} + +tasks.register('verifyResourceJson') { + group = 'verification' + description = 'Parses resources and validates recipe advancements, locale parity, and optional conditions.' + doLast { + List jsonFiles = fileTree('src/main/resources') { + include '**/*.json' + include 'pack.mcmeta' + }.files.sort { it.path } + if (jsonFiles.size() != 14933) { + throw new GradleException("Expected 14933 runtime JSON documents, found ${jsonFiles.size()}") + } + jsonFiles.each { candidate -> + try { + new JsonSlurper().parseText(candidate.getText('UTF-8').replaceFirst(/^\uFEFF/, '')) + } catch (Exception ex) { + throw new GradleException("Invalid resource JSON: ${candidate}", ex) + } + } + List localeNames = ['en_en.json', 'en_gb.json', 'en_us.json'] + List locales = localeNames.collect { name -> + new JsonSlurper().parse(file("src/main/resources/assets/ironagefurniture/lang/${name}")) as Map + } + if (!locales.every { it.size() == 7782 } + || !locales.tail().every { it.keySet() == locales.first().keySet() }) { + throw new GradleException('English locale files must retain 7782 identical translation keys') + } + + Map> optionalIntegrations = optionalIntegrationExpectedCounts + def hasModLoadedCondition = { Object conditions, String modId -> + conditions instanceof List && conditions.any { condition -> + condition instanceof Map && condition.type == 'forge:mod_loaded' + && condition.modid == modId + } + } + File recipeRoot = file('src/main/resources/data/ironagefurniture/recipes') + File advancementRoot = file('src/main/resources/data/ironagefurniture/advancements') + Map recipeDocuments = fileTree(recipeRoot) { include '**/*.json' }.files.collectEntries { + [(it): new JsonSlurper().parse(it) as Map] + } + Map advancementDocuments = fileTree(advancementRoot) { include '**/*.json' }.files.collectEntries { + [(it): new JsonSlurper().parse(it) as Map] + } + def advancementPayloads = { Map document -> + if (document.advancements instanceof List) { + return document.advancements.collect { branch -> + branch instanceof Map ? branch.advancement : null + }.findAll { it instanceof Map } as List + } + [document] + } + advancementDocuments.each { advancementFile, document -> + advancementPayloads(document).each { Map advancement -> + List rewards = advancement.rewards instanceof Map + && advancement.rewards.recipes instanceof List + ? advancement.rewards.recipes as List : [] + if (rewards.isEmpty()) { + return + } + if (!(advancement.criteria instanceof Map)) { + throw new GradleException("Recipe advancement has no criteria: ${advancementFile}") + } + Map criteria = advancement.criteria as Map + criteria.each { criterionName, criterion -> + if (criterion instanceof Map && criterion.trigger == 'minecraft:inventory_changed') { + Object predicates = criterion.conditions instanceof Map + ? criterion.conditions.items : null + if (!(predicates instanceof List) || predicates.isEmpty()) { + throw new GradleException("Recipe advancement has no item predicates at " + + "${advancementFile}:${criterionName}") + } + predicates.each { predicate -> + if (!(predicate instanceof Map) || predicate.containsKey('item') || predicate.isEmpty()) { + throw new GradleException("Invalid item predicate at " + + "${advancementFile}:${criterionName}; use items or tag, not item") + } + } + } + } + Map recipeCriteria = criteria.findAll { criterionName, criterion -> + criterion instanceof Map && criterion.trigger == 'minecraft:recipe_unlocked' + } + List requirements = advancement.requirements instanceof List + ? advancement.requirements.flatten().findAll { it instanceof String } as List : [] + rewards.each { recipeId -> + String recipePath = recipeId.startsWith('ironagefurniture:') + ? recipeId.substring('ironagefurniture:'.length()) : null + if (recipePath == null || !new File(recipeRoot, "${recipePath}.json").isFile()) { + throw new GradleException("Recipe advancement rewards missing recipe ${recipeId}: " + + advancementFile) + } + List matchingCriteria = recipeCriteria.findAll { criterionName, criterion -> + criterion.conditions instanceof Map && criterion.conditions.recipe == recipeId + }.keySet() as List + if (matchingCriteria.isEmpty() || !matchingCriteria.any { requirements.contains(it) }) { + throw new GradleException("Recipe advancement must require a matching recipe_unlocked " + + "criterion for ${recipeId}: ${advancementFile}") + } + } + } + } + if (recipeDocuments.any { recipeFile, recipe -> recipe.type == 'forge:conditional' }) { + throw new GradleException('Optional recipes must use top-level conditions, not forge:conditional, ' + + 'because an unmet wrapper condition is logged once per recipe at info level') + } + optionalIntegrations.each { modId, expectedCounts -> + Set recipes = recipeDocuments.findAll { recipeFile, recipe -> + hasModLoadedCondition(recipe.conditions, modId) + }.keySet() + if (recipes.size() != expectedCounts.recipes) { + throw new GradleException("Expected ${expectedCounts.recipes} ${modId} recipes, " + + "found ${recipes.size()}") + } + recipes.each { recipeFile -> + Map recipe = recipeDocuments[recipeFile] + if (!(recipe.type instanceof String) || recipe.type == 'forge:conditional' + || !(recipe.conditions instanceof List) || recipe.conditions.size() != 1 + || !hasModLoadedCondition(recipe.conditions, modId)) { + throw new GradleException( + "Optional recipe lacks one top-level forge:mod_loaded condition for ${modId}: " + + recipeFile) + } + } + + Set advancements = advancementDocuments.findAll { advancementFile, advancement -> + advancement.advancements instanceof List && advancement.advancements.size() == 1 + && hasModLoadedCondition(advancement.advancements[0].conditions, modId) + }.keySet() + if (advancements.size() != expectedCounts.advancements) { + throw new GradleException("Expected ${expectedCounts.advancements} ${modId} advancements, " + + "found ${advancements.size()}") + } + advancements.each { advancementFile -> + Map wrapper = advancementDocuments[advancementFile] + if (wrapper.keySet() != ['advancements'] as Set + || !(wrapper.advancements instanceof List) + || wrapper.advancements.size() != 1 + || !hasModLoadedCondition(wrapper.advancements[0].conditions, modId) + || !(wrapper.advancements[0].advancement instanceof Map)) { + throw new GradleException( + "Optional advancement lacks a forge:mod_loaded condition for ${modId}: " + + advancementFile) + } + } + } + int conditionalRecipeCount = optionalIntegrations.values().sum { it.recipes } as int + int conditionalAdvancementCount = optionalIntegrations.values().sum { it.advancements } as int + logger.lifecycle('Validated {} resource JSON documents, {} locale keys, {} conditional recipes, ' + + 'and {} conditional advancements.', jsonFiles.size(), locales.first().size(), + conditionalRecipeCount, conditionalAdvancementCount) + } +} + +tasks.register('verifyNamespace') { + group = 'verification' + description = 'Requires the maintained Java namespace while preserving the runtime mod namespace.' + doLast { + String legacyPackage = 'com.mcmoddev.ironagefurniture' + String maintainedPackage = 'zone.moddev.mc.ironagefurniture' + String maintainedPath = "src/main/java/${maintainedPackage.replace('.', '/')}/" + List sources = fileTree('src/main/java') { include '**/*.java' }.files.sort { it.path } + if (sources.size() < 104) { + throw new GradleException("Expected at least 104 production Java sources, found ${sources.size()}") + } + sources.each { sourceFile -> + String relativePath = project.relativePath(sourceFile).replace('\\', '/') + String contents = sourceFile.getText('UTF-8').replaceFirst(/^\uFEFF/, '') + if (!relativePath.startsWith(maintainedPath) || contents.contains(legacyPackage)) { + throw new GradleException("Legacy or misplaced IronAgeFurniture source: ${relativePath}") + } + def packageMatch = contents =~ /(?m)^package\s+([^;]+);/ + if (!packageMatch.find()) { + throw new GradleException("Java source has no package declaration: ${relativePath}") + } + String expectedPackage = relativePath.substring('src/main/java/'.length(), + relativePath.lastIndexOf('/')).replace('/', '.') + if (packageMatch.group(1) != expectedPackage) { + throw new GradleException("Package/path mismatch in ${relativePath}: ${packageMatch.group(1)}") + } + } + ['assets/ironagefurniture', 'data/ironagefurniture'].each { path -> + if (!file("src/main/resources/${path}").isDirectory()) { + throw new GradleException("Persistent resource namespace is missing: ${path}") + } + } + } +} + +tasks.register('verifyVersionMetadata') { + group = 'verification' + description = 'Checks authoritative version and generated Forge metadata.' + dependsOn tasks.named('processResources') + doLast { + String source = file( + 'src/main/java/zone/moddev/mc/ironagefurniture/Ironagefurniture.java').getText('UTF-8') + if (!source.contains("VERSION = \"${project.version}\"")) { + throw new GradleException('Java VERSION constant is not synchronized') + } + ['README.md', 'CHANGELOG.md', 'docs/VERSIONS.md'].each { path -> + if (!file(path).getText('UTF-8').contains(project.version.toString())) { + throw new GradleException("Version is missing from ${path}") + } + } + File generated = layout.buildDirectory.file('resources/main/META-INF/mods.toml').get().asFile + String metadata = generated.getText('UTF-8') + [ + 'modId="ironagefurniture"', + "version=\"${project.version}\"", + 'license="LGPL-2.1"', + 'versionRange="[40.3.0,41)"', + 'versionRange="[1.18.2]"' + ].each { required -> + if (!metadata.contains(required)) { + throw new GradleException("Generated mods.toml is missing ${required}") + } + } + if (metadata.contains('${')) { + throw new GradleException('Generated mods.toml contains unresolved properties') + } + } +} + +tasks.register('verifyDedicatedServerBoundaries') { + group = 'verification' + description = 'Keeps common proxy code free of client-only Minecraft and Forge types.' + doLast { + String commonProxy = file( + 'src/main/java/zone/moddev/mc/ironagefurniture/proxy/CommonProxy.java').getText('UTF-8') + ['net.minecraft.client.', 'net.minecraftforge.client.', 'SeatRenderer', 'EntityRenderers'] + .each { forbidden -> + if (commonProxy.contains(forbidden)) { + throw new GradleException("CommonProxy contains client-only reference ${forbidden}") + } + } + String entrypoint = file( + 'src/main/java/zone/moddev/mc/ironagefurniture/Ironagefurniture.java').getText('UTF-8') + if (!entrypoint.contains('DistExecutor.runForDist')) { + throw new GradleException('Client renderer registration is not guarded by Dist.CLIENT') + } + } +} + +tasks.register('verifyWorkflowPins') { + group = 'verification' + description = 'Requires third-party GitHub Actions to be pinned to full commit SHAs.' + doLast { + File workflows = file('.github/workflows') + if (!workflows.isDirectory()) { + throw new GradleException('Missing GitHub Actions workflows') + } + fileTree(workflows) { include '*.yml'; include '*.yaml' }.each { workflow -> + workflow.readLines('UTF-8').eachWithIndex { line, index -> + def match = line =~ /^\s*uses:\s*([^#\s]+).*/ + if (match.matches()) { + String action = match.group(1) + if (!action.startsWith('./') && !(action ==~ /[^@]+@[0-9a-f]{40}/)) { + throw new GradleException("Unpinned action ${action} at ${workflow}:${index + 1}") + } + } + } + } + } +} + +tasks.register('verifyReleaseArtifacts') { + group = 'verification' + description = 'Audits exactly three deterministic Java 17 release jars.' + dependsOn tasks.named('assemble') + dependsOn tasks.named('verifyReleaseConfiguration') + dependsOn tasks.named('verifyRepositoryHygiene') + dependsOn tasks.named('verifyResourceJson') + dependsOn tasks.named('verifyNamespace') + dependsOn tasks.named('verifyVersionMetadata') + doLast { + File libs = layout.buildDirectory.dir('libs').get().asFile + List jars = (libs.listFiles() ?: [] as File[]) + .findAll { it.name.endsWith('.jar') }.sort { it.name } + List expected = expectedReleaseFiles.get().sort() + if (jars.collect { it.name } != expected || jars.any { it.length() == 0L }) { + throw new GradleException("Expected exactly three non-empty release jars ${expected}, " + + "found ${jars.collect { it.name }}") + } + List forbiddenEntries = [ + 'com/mcmoddev/ironagefurniture/', 'src/test/', 'src/optionalIntegrationTest/', + 'zone/moddev/mc/ironagefurniture/fixture/', + 'ironagefurniture-optional-integration-probe', 'agent-notes/', '.github/', + '.classpath', '.project', 'ci-fixtures/', 'minecraft-mavenizer', 'build/', 'run/' + ] + jars.each { candidate -> + new ZipFile(candidate).withCloseable { ZipFile zip -> + List names = zip.entries().collect { it.name } + forbiddenEntries.each { forbidden -> + if (names.any { it.contains(forbidden) }) { + throw new GradleException("${candidate.name} contains forbidden entry ${forbidden}") + } + } + zip.entries().findAll { entry -> + !entry.isDirectory() && (archiveTextSuffixes.any { entry.name.endsWith(it) } + || entry.name.endsWith('/element-list') + || entry.name.endsWith('/package-list')) + }.each { entry -> + if (zip.getInputStream(entry).withCloseable { it.bytes.any { value -> value == 13 } }) { + throw new GradleException("${candidate.name}!/${entry.name} does not use LF endings") + } + } + } + } + File mainJar = new File(libs, expectedReleaseFiles.get()[0]) + new ZipFile(mainJar).withCloseable { ZipFile zip -> + [ + 'META-INF/mods.toml', + 'assets/ironagefurniture/lang/en_us.json', + 'zone/moddev/mc/ironagefurniture/Ironagefurniture.class' + ].each { required -> + if (zip.getEntry(required) == null) { + throw new GradleException("Release jar is missing ${required}") + } + } + String metadata = zip.getInputStream(zip.getEntry('META-INF/mods.toml')) + .withCloseable { it.getText('UTF-8') } + if (!metadata.contains('modId="ironagefurniture"') + || !metadata.contains("version=\"${project.version}\"") + || metadata.contains('${')) { + throw new GradleException('Packaged mods.toml is not synchronized') + } + Manifest manifest = new Manifest(zip.getInputStream(zip.getEntry('META-INF/MANIFEST.MF'))) + if (manifest.mainAttributes.getValue('Implementation-Version') != project.version.toString() + || manifest.mainAttributes.getValue('Maven-Artifact') != expectedMavenCoordinate + || manifest.mainAttributes.getValue('Implementation-Timestamp') != null + || manifest.mainAttributes.getValue('Timestamp') != null) { + throw new GradleException('Release manifest identity is incorrect or volatile') + } + zip.entries().findAll { it.name.endsWith('.class') }.each { entry -> + byte[] header = zip.getInputStream(entry).withCloseable { it.readNBytes(8) } + int major = ((header[6] & 0xff) << 8) | (header[7] & 0xff) + if (major != 61) { + throw new GradleException("${entry.name} uses class major ${major}, expected 61") + } + } + if (zip.entries().any { it.name.endsWith('.java') + || it.name.startsWith('assets/iron-age-furniture/') + || it.name.startsWith('data/iron-age-furniture/') }) { + throw new GradleException('Runtime jar contains source or a renamed persistent namespace') + } + } + new ZipFile(new File(libs, expectedReleaseFiles.get()[1])).withCloseable { zip -> + if (zip.getEntry('zone/moddev/mc/ironagefurniture/Ironagefurniture.java') == null) { + throw new GradleException('Sources jar is missing Ironagefurniture.java') + } + } + new ZipFile(new File(libs, expectedReleaseFiles.get()[2])).withCloseable { zip -> + if (zip.getEntry('index.html') == null) { + throw new GradleException('Javadoc jar is missing index.html') + } + } + } +} + +tasks.register('writeReleaseChecksums') { + group = 'verification' + description = 'Writes SHA-256 checksums for the audited release jars.' + dependsOn tasks.named('verifyReleaseArtifacts') + outputs.file(layout.buildDirectory.file('release/SHA256SUMS')) + doLast { + File output = layout.buildDirectory.file('release/SHA256SUMS').get().asFile + output.parentFile.mkdirs() + File libs = layout.buildDirectory.dir('libs').get().asFile + output.setText(expectedReleaseFiles.get().sort().collect { name -> + "${sha256Of(new File(libs, name))} ${name}" + }.join('\n') + '\n', 'UTF-8') + } +} + +tasks.register('verifyReleaseChecksums') { + group = 'verification' + description = 'Recomputes and verifies the release SHA-256 checksum manifest.' + dependsOn tasks.named('writeReleaseChecksums') + doLast { + File libs = layout.buildDirectory.dir('libs').get().asFile + File manifest = layout.buildDirectory.file('release/SHA256SUMS').get().asFile + Map declared = manifest.readLines('UTF-8').findAll { !it.trim().isEmpty() } + .collectEntries { line -> + def parts = line.split(/\s+/, 2) + [(parts[1]): parts[0].toUpperCase()] + } + if (declared.keySet().sort() != expectedReleaseFiles.get().sort()) { + throw new GradleException('Checksum manifest does not list exactly the release artifacts') + } + declared.each { name, expected -> + String actual = sha256Of(new File(libs, name)) + if (actual != expected) throw new GradleException("Checksum mismatch for ${name}") + } + } +} + +tasks.register('prepareReleaseBundle', Sync) { + group = 'verification' + description = 'Copies the audited jars, checksum manifest, and release notes into one immutable bundle.' + dependsOn tasks.named('verifyReleaseChecksums') + into layout.buildDirectory.dir('prepared-release') + from(layout.buildDirectory.dir('libs')) { + include expectedReleaseFiles.get() + } + from(layout.buildDirectory.file('release/SHA256SUMS')) + from('CHANGELOG.md') +} + +tasks.register('verifyPreparedReleaseArtifacts') { + group = 'verification' + description = 'Audits a previously built immutable release bundle before publication.' + doLast { + if (!preparedReleaseDir.isPresent()) { + throw new GradleException('preparedReleaseDir is required') + } + File prepared = file(preparedReleaseDir.get()) + List expectedBundle = (expectedReleaseFiles.get() + + ['SHA256SUMS', 'CHANGELOG.md']).sort() + List actualBundle = (prepared.listFiles() ?: [] as File[]) + .findAll { it.isFile() }.collect { it.name }.sort() + if (actualBundle != expectedBundle) { + throw new GradleException("Expected prepared bundle ${expectedBundle}, found ${actualBundle}") + } + Map declared = new File(prepared, 'SHA256SUMS').readLines('UTF-8') + .findAll { !it.trim().isEmpty() }.collectEntries { line -> + def parts = line.split(/\s+/, 2) + [(parts[1]): parts[0].toUpperCase()] + } + if (declared.keySet().sort() != expectedReleaseFiles.get().sort()) { + throw new GradleException('Prepared checksums do not list exactly the release jars') + } + declared.each { name, expected -> + if (sha256Of(new File(prepared, name)) != expected) { + throw new GradleException("Prepared checksum mismatch for ${name}") + } + } + } +} + +tasks.register('validateMavenReleaseCredentials') { + group = 'publishing' + description = 'Prevents Maven publication without an explicit remote repository and credentials.' + doLast { + ['MAVEN_UPLOAD_URL', 'MAVEN_UPLOAD_USERNAME', 'MAVEN_UPLOAD_PASSWORD'].each { name -> + if (!System.getenv(name)) throw new GradleException("${name} is required") + } + if (System.getenv('MAVEN_UPLOAD_URL').startsWith('file:')) { + throw new GradleException('Maven release publication must use a remote repository') + } + } +} + +tasks.withType(PublishToMavenRepository).configureEach { + dependsOn tasks.named('validateMavenReleaseCredentials') + dependsOn(preparedReleaseDir.isPresent() + ? tasks.named('verifyPreparedReleaseArtifacts') + : tasks.named('verifyReleaseArtifacts')) +} + +tasks.register('syncForge40EclipseLaunches') { + group = 'ide' + description = 'Synchronizes processed resources and hardens Forge 40 Eclipse launches.' + dependsOn tasks.named('processResources') + dependsOn tasks.named('verifyBuildEnvironment') + doLast { + String mainClass = 'net.minecraftforge.userdev.LaunchTesting' + String mainOutput = new File(projectDir, 'bin/main').absolutePath + String modClasses = "${project.mod_id}%%${mainOutput}" + String eclipseGradleJavaHome = java17Compiler.get().metadata.installationPath.asFile.absolutePath + def escapePreference = { value -> value.replace('\\', '\\\\').replace(':', '\\:') } + File buildshipPreferences = file('.settings/org.eclipse.buildship.core.prefs') + buildshipPreferences.parentFile.mkdirs() + buildshipPreferences.setText([ + 'arguments=', + 'auto.sync=false', + 'build.scans.enabled=false', + 'connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER)', + "connection.gradle.user.home=${escapePreference(gradle.gradleUserHomeDir.absolutePath)}", + 'connection.project.dir=', + 'eclipse.preferences.version=1', + "gradle.user.home=${escapePreference(gradle.gradleUserHomeDir.absolutePath)}", + "java.home=${escapePreference(eclipseGradleJavaHome)}", + 'jvm.arguments=', + 'offline.mode=false', + 'override.workspace.settings=true', + 'show.console.view=false', + 'show.executions.view=false', + '' + ].join('\r\n'), 'UTF-8') + + File processedResources = layout.buildDirectory.dir('resources/main').get().asFile + copy { + from processedResources + into mainOutput + } + + ['Client', 'Server', 'Data'].each { runName -> + File launch = [file("run${runName}.launch"), file(".eclipse/run${runName}.launch")] + .find { it.isFile() } + if (launch == null) { + throw new GradleException("Missing generated Eclipse launch run${runName}.launch") + } + String text = launch.getText('UTF-8') + if (text.contains('')) { + text = text.replace( + '', + '\r\n' + + " \r\n" + + '') + } + text = text.replace('', + "") + text = text.replaceFirst( + //, + java.util.regex.Matcher.quoteReplacement( + "")) + text = text.replaceFirst(//, + java.util.regex.Matcher.quoteReplacement( + "")) + + def programArguments = text =~ /()/ + if (programArguments.count != 1) { + throw new GradleException("ForgeGradle generated malformed program arguments in ${launch.name}") + } + String arguments = programArguments[0][2] + ['cache', 'metadata', 'to-srg', 'to-obf'].each { flag -> + String prefix = "--${flag} " + int valueStart = arguments.indexOf(prefix) + int valueEnd = valueStart < 0 ? -1 : arguments.indexOf(' --', valueStart + prefix.length()) + if (valueStart < 0 || valueEnd < 0) { + throw new GradleException("ForgeGradle omitted --${flag} from ${launch.name}") + } + valueStart += prefix.length() + String value = arguments.substring(valueStart, valueEnd) + if (!value.startsWith('"') || !value.endsWith('"')) { + arguments = "${arguments.substring(0, valueStart)}"${value}"${arguments.substring(valueEnd)}" + } + } + text = text.replace(programArguments[0][0], + programArguments[0][1] + arguments + programArguments[0][3]) + + String legacyPrefix = '-DlegacyClassPath.file=' + int legacyStart = text.indexOf(legacyPrefix) + int legacyEnd = text.indexOf(' -DignoreList=', legacyStart) + if (legacyStart < 0 || legacyEnd < 0) { + throw new GradleException("ForgeGradle omitted -DlegacyClassPath.file from ${launch.name}") + } + boolean quoted = legacyStart >= 6 && text.substring(legacyStart - 6, legacyStart) == '"' + && text.substring(legacyEnd - 6, legacyEnd) == '"' + if (!quoted) { + text = text.substring(0, legacyStart) + '"' + + text.substring(legacyStart, legacyEnd) + '"' + text.substring(legacyEnd) + } + if (!text.contains('ATTR_EXCLUDE_TEST_CODE')) { + text = text.replace('', + ' \r\n' + + '') + } + launch.setText(text, 'UTF-8') + } + } +} + +tasks.register('verifyEclipseProductionClasspath') { + group = 'verification' + description = 'Verifies Buildship and production-only Forge 40 launch metadata.' + dependsOn tasks.named('syncForge40EclipseLaunches') + doLast { + File classpath = file('.classpath') + File eclipseProject = file('.project') + if (!classpath.isFile() || !eclipseProject.isFile() + || !eclipseProject.getText('UTF-8').contains("${eclipseWorkspaceProjectName}")) { + throw new GradleException('Eclipse project metadata is missing or misnamed') + } + def classpathXml = new XmlSlurper(false, false).parse(classpath) + classpathXml.classpathentry.each { entry -> + String path = entry.@path.text() + boolean testSource = path.replace('\\', '/').startsWith('src/test/') + boolean testLibrary = path ==~ /(?i).*\/(junit|hamcrest|mockito|byte-buddy)[^\/]*\/.*\.jar/ + if (testSource) { + String scope = entry.attributes.attribute.find { + it.@name.text() == 'gradle_scope' + }?.@value?.text() + if (entry.@output.text() != 'bin/test' || scope != 'test') { + throw new GradleException("Eclipse test source is not isolated: ${path}") + } + } + if (testLibrary) { + String scope = entry.attributes.attribute.find { + it.@name.text() == 'gradle_used_by_scope' + }?.@value?.text() + if (scope != 'test') { + throw new GradleException("Eclipse production classpath exposes test dependency: ${path}") + } + } + } + File buildshipPreferences = file('.settings/org.eclipse.buildship.core.prefs') + if (!buildshipPreferences.isFile() + || !buildshipPreferences.getText('UTF-8').contains('override.workspace.settings=true')) { + throw new GradleException('Eclipse Buildship wrapper preferences are missing') + } + ['Client', 'Server', 'Data'].each { runName -> + File launch = [file("run${runName}.launch"), file(".eclipse/run${runName}.launch")] + .find { it.isFile() } + String text = launch.getText('UTF-8') + if (!text.contains('ATTR_EXCLUDE_TEST_CODE') + || text ==~ /(?s).*(?:junit|mockito|src[\\\/]test).*/ + || !text.contains("key=\"MOD_CLASSES\" value=\"${project.mod_id}%%${new File(projectDir, 'bin/main').absolutePath}\"") + || !text.contains("key=\"org.eclipse.jdt.launching.PROJECT_ATTR\" value=\"${eclipseWorkspaceProjectName}\"")) { + throw new GradleException("Eclipse launch is not production-only: ${launch.name}") + } + ['cache', 'metadata', 'to-srg', 'to-obf'].each { flag -> + if (!text.contains("--${flag} "")) { + throw new GradleException("Eclipse launch does not quote --${flag}: ${launch.name}") + } + } + if (!text.contains('"-DlegacyClassPath.file=') + || !text.contains('minecraft_classpath.txt" -DignoreList=')) { + throw new GradleException("Eclipse launch does not quote its legacy classpath: ${launch.name}") + } + } + File processedModsToml = layout.buildDirectory.file( + 'resources/main/META-INF/mods.toml').get().asFile + File eclipseModsToml = file('bin/main/META-INF/mods.toml') + if (!eclipseModsToml.isFile() + || !Arrays.equals(eclipseModsToml.bytes, processedModsToml.bytes)) { + throw new GradleException('Eclipse output contains stale or unexpanded mods.toml metadata') + } + } +} + +tasks.matching { it.name == 'genEclipseRuns' }.configureEach { + finalizedBy tasks.named('syncForge40EclipseLaunches') +} + +tasks.register('isolateEclipseProductionRuns') { + group = 'ide' + dependsOn tasks.named('genEclipseRuns') + dependsOn tasks.named('syncForge40EclipseLaunches') +} + +tasks.matching { it.name == 'eclipse' }.configureEach { + finalizedBy tasks.named('syncForge40EclipseLaunches') +} + +tasks.register('prepareEclipse') { + group = 'ide' + description = 'Creates the Buildship project model and ForgeGradle 7 launch profiles.' + dependsOn tasks.named('eclipse') + dependsOn tasks.named('isolateEclipseProductionRuns') +} -Object findProperty(final String propertyName) { - return hasProperty(propertyName) ? property(propertyName) : null; +tasks.named('check') { + dependsOn tasks.named('verifyBuildEnvironment') + dependsOn tasks.named('verifyObjectHolderContract') + dependsOn tasks.named('verifyReleaseConfiguration') + dependsOn tasks.named('verifyMavenCoordinates') + dependsOn tasks.named('verifyRepositoryHygiene') + dependsOn tasks.named('verifyResourceJson') + dependsOn tasks.named('verifyNamespace') + dependsOn tasks.named('verifyVersionMetadata') + dependsOn tasks.named('verifyWorkflowPins') + dependsOn tasks.named('verifyDedicatedServerBoundaries') } diff --git a/ci-fixtures/tools/LICENSE-MAVENIZER.txt b/ci-fixtures/tools/LICENSE-MAVENIZER.txt new file mode 100644 index 0000000000..bc0390e98c --- /dev/null +++ b/ci-fixtures/tools/LICENSE-MAVENIZER.txt @@ -0,0 +1,504 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 + USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random + Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! diff --git a/ci-fixtures/tools/README.md b/ci-fixtures/tools/README.md new file mode 100644 index 0000000000..77aaaf5420 --- /dev/null +++ b/ci-fixtures/tools/README.md @@ -0,0 +1,23 @@ +# Forge 1.18.2 Mavenizer compatibility fixture + +`minecraft-mavenizer-0.5.21-orespawn-1.18.jar` is a build-only derivative of +MinecraftForge MinecraftMavenizer `0.5.21`, source commit +`6968241ce7a0a902cdc1c534b976e8373a423091`. + +Forge 40's 1.18.2 decompiler emits a redundant explicit `Holder.Direct#value` +record accessor. The complete patched Minecraft source tree is rejected by +modern `javac`; removing that method is safe because the record generates the +same public accessor automatically. The derivative also honors +`ORESPAWN_MAVENIZER_OFFLINE=true` by adding Mavenizer's native `--offline` +argument. This closes ForgeGradle 7's failure to propagate Gradle offline mode +to the subprocess; it does not alter normal online builds. + +`minecraft-1.18-holder-accessor.patch` documents the complete two-file source +change. + +The fixture is used only while ForgeGradle prepares the development dependency. +It is checksum-verified by the build and excluded from every IronAgeFurniture release artifact. +MinecraftMavenizer remains licensed LGPL-2.1-only; see `LICENSE-MAVENIZER.txt`. + +SHA-256: +`28A6697BDF6D9500EC0AF9C1C949B9F3ED7DDFDA649CB5CAC4BEEA2E9567570A` diff --git a/ci-fixtures/tools/minecraft-1.18-holder-accessor.patch b/ci-fixtures/tools/minecraft-1.18-holder-accessor.patch new file mode 100644 index 0000000000..9e9aaaf851 --- /dev/null +++ b/ci-fixtures/tools/minecraft-1.18-holder-accessor.patch @@ -0,0 +1,43 @@ +diff --git a/src/main/java/net/minecraftforge/mcmaven/cli/Main.java b/src/main/java/net/minecraftforge/mcmaven/cli/Main.java +index eeda8a0..4762951 100644 +--- a/src/main/java/net/minecraftforge/mcmaven/cli/Main.java ++++ b/src/main/java/net/minecraftforge/mcmaven/cli/Main.java +@@ -14,0 +15 @@ import java.util.ArrayList; ++import java.util.Arrays; +@@ -39,0 +41,6 @@ public class Main { ++ if ("true".equalsIgnoreCase(System.getenv("ORESPAWN_MAVENIZER_OFFLINE")) ++ && Arrays.stream(args).noneMatch("--offline"::equals)) { ++ var offlineArgs = Arrays.copyOf(args, args.length + 1); ++ offlineArgs[args.length] = "--offline"; ++ args = offlineArgs; ++ } +diff --git a/src/main/java/net/minecraftforge/mcmaven/impl/util/ProcessUtils.java b/src/main/java/net/minecraftforge/mcmaven/impl/util/ProcessUtils.java +index 9fa2888..be7f6be 100644 +--- a/src/main/java/net/minecraftforge/mcmaven/impl/util/ProcessUtils.java ++++ b/src/main/java/net/minecraftforge/mcmaven/impl/util/ProcessUtils.java +@@ -307,0 +308,2 @@ public final class ProcessUtils { ++ patchMinecraft118HolderAccessor(sourcesOutput); ++ +@@ -368,0 +371,22 @@ public final class ProcessUtils { ++ private static void patchMinecraft118HolderAccessor(File sourcesOutput) { ++ var holder = new File(sourcesOutput, "net/minecraft/core/Holder.java"); ++ if (!holder.isFile()) ++ return; ++ ++ try { ++ var source = Files.readString(holder.toPath()); ++ var record = "public static record Direct(T value) implements Holder"; ++ var accessor = "\n public T value() {\n return this.value;\n }\n"; ++ if (!source.contains(record) || !source.contains(accessor)) ++ return; ++ ++ var patched = source.replace(accessor, "\n"); ++ if (patched.contains(accessor)) ++ throw new IllegalStateException("Holder.Direct accessor compatibility patch was ambiguous"); ++ Files.writeString(holder.toPath(), patched); ++ LOGGER.info("Applied Minecraft 1.18.2 Holder.Direct javac compatibility patch"); ++ } catch (IOException e) { ++ throw new RuntimeException("Failed to patch Minecraft 1.18.2 Holder source", e); ++ } ++ } ++ diff --git a/ci-fixtures/tools/minecraft-mavenizer-0.5.21-orespawn-1.18.jar b/ci-fixtures/tools/minecraft-mavenizer-0.5.21-orespawn-1.18.jar new file mode 100644 index 0000000000..f88af85f84 Binary files /dev/null and b/ci-fixtures/tools/minecraft-mavenizer-0.5.21-orespawn-1.18.jar differ diff --git a/docs/VERSIONS.md b/docs/VERSIONS.md new file mode 100644 index 0000000000..d9eda55f45 --- /dev/null +++ b/docs/VERSIONS.md @@ -0,0 +1,17 @@ +# IronAgeFurniture Versioning + +IronAgeFurniture releases use `Major.Minor.Bug.Target`. The first three components describe the functional release, and the final numeric component identifies the Minecraft and loader target. + +The target is calculated as `MmmppL`: Minecraft major without padding, two-digit minor, two-digit patch, and a one-digit loader code. Forge uses loader code `1`; NeoForge uses `2`. + +For Minecraft 1.18.2 Forge, the target is `118021`, so this Phase 3 release is `0.3.0.118021`. The release tag is exactly that complete version. + +Equivalent forward ports retain `0.3.0` and change only the target. A player-visible feature or fix changes Major, Minor, or Bug independently of the target. + +The 1.18.2 release contains the upgrade bridge for supported furniture and +lighting saved by the 1.10.2 and 1.12.2 core releases. It also recognises the +1.12.2 Oh The Biomes Add-On namespace and carries supported furniture into the +embedded 1.18.2 BYG catalog. Back up a world before crossing the flattening +boundary; a world saved by 1.18.2 cannot safely return to an older game version. + +The complete version must agree with `minecraft_version`, `loader_name`, and `loader_code` in `gradle.properties`. CI build numbers are never appended. diff --git a/gradle.properties b/gradle.properties index 57fab2cb9e..7b3040c656 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,100 +1,35 @@ -org.gradle.daemon = false - -group = com.mcmoddev -archivesBaseName = ironagefurniture -name = IronAgeFurniture -description = Ye Olde Style Furniture - -#Minumum Minecraft Version Mod will be built with -mc_version=1.18.2 - -#ForgeGradle version to use (Required) -fg_version = 5.1.+ -#version of Minecraft Forge is built against (Required) -forge_mc_version = 1.18.2 -#Forge version to use (Required) -forge_version = 40.2.0 -#Mappings channel: snapshot or stable -mcp_mappings_channel = official -#Mappings version to use (Required) -mcp_mappings_version = 1.18.2 - -#Cursforge Project ID (Required) -#curseforge_project_id = 341834 -#Type of Release, can be one of 'alpha', 'beta' or 'release' (Defaults to 'alpha' if not set) -curseforge_release_type = alpha -#When using a ChangeLog file specifies filename -curseforge_changelog_filename = CHANGELOG.md -#Changelog type, can be one of 'text', 'html' or 'markdown' (Defaults to 'text' if not set) -curseforge_changelog_type = markdown -#Version(s) of Minecraft this mod will work on (comma separated list) -curseforge_versions = 1.18.2 -#Whether to use a custom display name on artifacts -curseforge_use_custom_display_name = true -#List of required dependencies (comma separated list) -#curseforge_requirements = -#List of optional dependencies (comma separated list) -curseforge_optionals = biomes-o-plenty, immersive-engineering, oh-the-biomes-youll-go -#List of embedded dependencies (comma separated list) -#curseforge_embeddeds = -#List of compatible tools (comma separated list) -#curseforge_tools = -#List of incompatible dependencies (comma separated list) -#curseforge_incompatibles = -#List of included dependencies (comma separated list) -#curseforge_includes = - -#String reference to Core Plugin this mod contains, if any -#core_plugin = -#Whether or not to use Access Transformers from depended mods -dep_has_ats = false -#File name of this mod's Access Transformers (If any) -#mod_at_file = _at.cfg - -#Whether the artifacts should be signed -do_sign_jar = true - -#Create a source jar? -create_source_jar = true -#Create an API jar? -create_api_jar = true -#Create a deobf jar? -create_deobf_jar = true -#Create a javadoc jar? -create_javadoc_jar = true - -#The following four options are optional and do not affect your build in any way -#They are only for convenience when using the 'runClient' and 'runServer' tasks -#Whether to Disable server gui -#mc_server_nogui = true -#Whether to Skip the screen to confirm that you want to load a world with missing registry entries -#forge_do_not_backup = true -#Whether to skip having to confirm on server -#forge_query_result_confirm = true -#Whether to Skip jansi warnings in the log -#log4j_skip_jansi = true - -# Optional convenience setter for game resolution one of '480p', '576p', '720p', '1080p' or 'custom' -#mc_resolution = 1080p -#the following two will only be used when mc_resolution = custom -#mc_custom_resolution_width = 1920 -#mc_custom_resolution_height = 1080 -#mc_fullscreen = true - -#Additional arguments to pass to minecraft.clientJvmArgs -#client_jvm_args = -#Additional arguments to pass to minecraft.serverJvmArgs -#client_game_args = -#Additional arguments to pass to minecraft.clientRunArgs -#server_jvm_args = -#Additional arguments to pass to minecraft.serverRunArgs -#server_game_args = - -##The following three options should *NEVER* be set in this file, it's a security risk, Be safe, keep your account information private. -##These properties here are for reference only and explanation of what they do -##Your Minecraft account username (Consistent player name for singleplayer worlds) -##mc_username = -##Your Minecraft account password (Allows online play while present with associated username) -##mc_password = -##Your Minecraft account uuid (Allows using your skin while testing, This can be with or without hyphens) -##mc_uuid = +# Reproducible Gradle and ForgeGradle configuration. +org.gradle.jvmargs=-Xmx4G +org.gradle.daemon=false +org.gradle.configuration-cache=false +org.gradle.caching=true +org.gradle.parallel=false +net.minecraftforge.gradle.merge-source-sets=false + +# Project and release identity. +mod_version=0.3.0.118021 +mod_group=zone.moddev.mc +mod_archive_name=iron-age-furniture +mod_id=ironagefurniture +mod_name=IronAgeFurniture +mod_description=Ye Olde Style Furniture for Minecraft. +mod_authors=SkyBlade1978, FoxNekitsune +mod_license=LGPL-2.1 + +# Generic release-dispatcher metadata. +minecraft_version=1.18.2 +loader_name=forge +loader_code=1 +java_version=17 +java_toolchain_version=17.0.1+12 +java_setup_version=17.0.1+12 +gradle_java_version=17 +curseforge_project_id=341834 +curseforge_optionals=biomes-o-plenty,immersive-engineering,oh-the-biomes-youll-go + +# Forge 1.18.2 build coordinates. +forge_version=40.3.0 +forge_version_range=[40.3.0,41) +loader_version_range=[40,) +mcp_mappings_channel=official +mcp_mappings_version=1.18.2 diff --git a/gradle/furniture-catalog.gradle b/gradle/furniture-catalog.gradle new file mode 100644 index 0000000000..25c09c2ac8 --- /dev/null +++ b/gradle/furniture-catalog.gradle @@ -0,0 +1,242 @@ +import groovy.json.JsonOutput +import groovy.json.JsonSlurper + +def catalogFile = layout.projectDirectory.file('gradle/furniture-catalog.json') +def recipeDirectory = layout.projectDirectory.dir('src/main/resources/data/ironagefurniture/recipes') +def advancementDirectory = layout.projectDirectory.dir( + 'src/main/resources/data/ironagefurniture/advancements/recipes/chairs') +def blockStateDirectory = layout.projectDirectory.dir( + 'src/main/resources/assets/ironagefurniture/blockstates') + +def integrationForName = { String name -> + if (name.contains('_biomesoplenty_')) return 'biomesoplenty' + if (name.contains('_byg_')) return 'byg' + if (name.contains('_immersiveengineering_')) return 'immersiveengineering' + return null +} + +def orderedCondition = { String modId -> + [type: 'forge:mod_loaded', modid: modId] as LinkedHashMap +} + +def normalizeItemPredicates +normalizeItemPredicates = { Object value -> + if (value instanceof Map) { + Map map = value as Map + if (map.containsKey('item')) { + Object item = map.remove('item') + map.items = [item] + } + map.values().each { normalizeItemPredicates(it) } + } else if (value instanceof List) { + (value as List).each { normalizeItemPredicates(it) } + } +} + +def normalizedRecipe = { File file -> + Map parsed = new JsonSlurper().parse(file) as Map + String modId = integrationForName(file.name) + if (parsed.type == 'forge:conditional') { + List entries = parsed.recipes as List + if (entries == null || entries.size() != 1 || !(entries[0].recipe instanceof Map)) { + throw new GradleException("Unsupported conditional recipe structure: ${file}") + } + parsed = new LinkedHashMap(entries[0].recipe as Map) + } + // Furniture made from different woods belongs in separate recipe-book cells. + if (parsed.group == 'furniture') { + parsed.remove('group') + } + if (modId != null) { + Map reordered = new LinkedHashMap() + reordered.type = parsed.type + reordered.conditions = [orderedCondition(modId)] + parsed.each { key, value -> + if (key != 'type' && key != 'conditions') reordered[key] = value + } + parsed = reordered + } + return parsed +} + +def normalizedAdvancement = { File file -> + Map parsed = new JsonSlurper().parse(file) as Map + if (parsed.advancements instanceof List) { + List entries = parsed.advancements as List + if (entries.size() != 1 || !(entries[0].advancement instanceof Map)) { + throw new GradleException("Unsupported conditional advancement structure: ${file}") + } + parsed = new LinkedHashMap(entries[0].advancement as Map) + } + + String recipeId = file.name.substring(0, file.name.length() - '.json'.length()) + String modId = integrationForName(file.name) + Map reordered = new LinkedHashMap() + reordered.parent = parsed.parent ?: 'minecraft:recipes/root' + reordered.rewards = [recipes: ["ironagefurniture:${recipeId}"]] + reordered.criteria = parsed.criteria + normalizeItemPredicates(reordered.criteria) + reordered.criteria.has_the_recipe = [ + trigger: 'minecraft:recipe_unlocked', + conditions: [recipe: "ironagefurniture:${recipeId}"] + ] + reordered.requirements = [reordered.criteria.keySet().toList().sort()] + if (modId == null) return reordered + + return [ + advancements: [[ + conditions: [orderedCondition(modId)], + advancement: reordered + ]] + ] as LinkedHashMap +} + +def formattedJson = { Object value -> JsonOutput.prettyPrint(JsonOutput.toJson(value)) + '\n' } +def writeCatalogText = { File file, String text -> + file.setText(text.replace('\r\n', '\n'), 'UTF-8') +} + +def compatibilityBlockStates = { Map catalog -> + List> mappings = [] + (catalog.woods as Map).values().flatten().each { String modernWood -> + String legacyWood = modernWood == 'dark_oak' ? 'big_oak' : modernWood + mappings.add([ + source: "chair_wood_ironage_bench_padded_red_single_${modernWood}", + target: "chair_wood_ironage_bench_padded_single_${legacyWood}" + ]) + mappings.add([ + source: "chair_wood_ironage_bench_back_padded_red_single_${modernWood}", + target: "chair_wood_ironage_bench_back_padded_single_${legacyWood}" + ]) + } + mappings +} + +tasks.register('updateFurnitureCatalog') { + group = 'generation' + description = 'Deterministically rewrites catalog-governed recipes and advancements.' + inputs.file catalogFile + inputs.files fileTree(recipeDirectory) { include '*.json' } + inputs.files fileTree(advancementDirectory) { include '*.json' } + inputs.files fileTree(blockStateDirectory) { include '*.json' } + doLast { + Map catalog = new JsonSlurper().parse(catalogFile.asFile) as Map + fileTree(recipeDirectory) { include '*.json' }.files.sort { it.name }.each { file -> + writeCatalogText(file, formattedJson(normalizedRecipe(file))) + } + fileTree(advancementDirectory) { include '*.json' }.files.sort { it.name }.each { file -> + writeCatalogText(file, formattedJson(normalizedAdvancement(file))) + } + compatibilityBlockStates(catalog).each { mapping -> + File source = new File(blockStateDirectory.asFile, "${mapping.source}.json") + File target = new File(blockStateDirectory.asFile, "${mapping.target}.json") + writeCatalogText(target, source.getText('UTF-8')) + } + } +} + +tasks.register('verifyFurnitureCatalog') { + group = 'verification' + description = 'Verifies catalog coverage and that committed data is already deterministic.' + inputs.file catalogFile + inputs.file file('src/main/java/zone/moddev/mc/ironagefurniture/api/enumerations/BenchType.java') + inputs.files fileTree(recipeDirectory) { include '*.json' } + inputs.files fileTree(advancementDirectory) { include '*.json' } + doLast { + Map catalog = new JsonSlurper().parse(catalogFile.asFile) as Map + if (catalog.minecraft != project.minecraft_version.toString() || catalog.loader != project.loader_name) { + throw new GradleException('Furniture catalog targets the wrong Minecraft version or loader') + } + String benchTypes = file( + 'src/main/java/zone/moddev/mc/ironagefurniture/api/enumerations/BenchType.java').getText('UTF-8') + if (benchTypes.contains('END("end")')) { + throw new GradleException('Unused BenchType.END creates missing type=end model variants') + } + + fileTree(recipeDirectory) { include '*.json' }.files.sort { it.name }.each { file -> + String expected = formattedJson(normalizedRecipe(file)) + if (file.getText('UTF-8').replace('\r\n', '\n') != expected) { + throw new GradleException("Recipe is not catalog-normalized: ${project.relativePath(file)}") + } + Map recipe = new JsonSlurper().parseText(expected) as Map + if (recipe.group == 'furniture') { + throw new GradleException("Furniture recipe is incorrectly grouped across woods: " + + project.relativePath(file)) + } + } + fileTree(advancementDirectory) { include '*.json' }.files.sort { it.name }.each { file -> + String expected = formattedJson(normalizedAdvancement(file)) + if (file.getText('UTF-8').replace('\r\n', '\n') != expected) { + throw new GradleException("Advancement is not catalog-normalized: ${project.relativePath(file)}") + } + Map wrapper = new JsonSlurper().parseText(expected) as Map + Map advancement = wrapper.advancements instanceof List + ? wrapper.advancements[0].advancement as Map : wrapper + String recipeId = file.name.substring(0, file.name.length() - '.json'.length()) + Map criteria = advancement.criteria as Map + if (criteria.has_the_recipe?.trigger != 'minecraft:recipe_unlocked' + || criteria.has_the_recipe?.conditions?.recipe != "ironagefurniture:${recipeId}") { + throw new GradleException("Advancement unlocks the wrong recipe: ${project.relativePath(file)}") + } + List ingredientCriteria = criteria.findAll { key, value -> key != 'has_the_recipe' }.values() as List + if (ingredientCriteria.size() != 1 + || ingredientCriteria[0].trigger != 'minecraft:inventory_changed') { + throw new GradleException("Advancement needs one exact ingredient criterion: " + + project.relativePath(file)) + } + String criteriaJson = JsonOutput.toJson(ingredientCriteria[0]) + List predicates = ingredientCriteria[0].conditions?.items as List + if (criteriaJson.contains('minecraft:crafting_table') + || predicates == null || predicates.size() != 1 + || !(predicates[0] instanceof Map) + || (predicates[0] as Map).item != null + || ((predicates[0] as Map).items == null && (predicates[0] as Map).tag == null)) { + throw new GradleException("Advancement uses a generic or crafting-table criterion: " + + project.relativePath(file)) + } + } + + Map expectedCounts = [biomesoplenty: 429, byg: 1053, immersiveengineering: 38] + expectedCounts.each { modId, count -> + int recipes = fileTree(recipeDirectory) { + include "*_${modId}_*.json" + }.files.size() + int advancements = fileTree(advancementDirectory) { + include "*_${modId}_*.json" + }.files.size() + if (modId == 'immersiveengineering') { + recipes = fileTree(recipeDirectory) { + include '*_immersiveengineering_treated_wood.json' + }.files.size() + advancements = fileTree(advancementDirectory) { + include '*_immersiveengineering_treated_wood.json' + }.files.size() + } + if (recipes != count || advancements != count) { + throw new GradleException("Unexpected ${modId} catalog coverage: " + + "${recipes} recipes, ${advancements} advancements; expected ${count}") + } + } + + File blockStates = file('src/main/resources/assets/ironagefurniture/blockstates') + File itemModels = file('src/main/resources/assets/ironagefurniture/models/item') + compatibilityBlockStates(catalog).each { mapping -> + File source = new File(blockStates, "${mapping.source}.json") + File target = new File(blockStates, "${mapping.target}.json") + if (!target.isFile() || target.getText('UTF-8').replace('\r\n', '\n') + != source.getText('UTF-8').replace('\r\n', '\n')) { + throw new GradleException("Legacy padded-bench blockstate is missing or stale: ${mapping.target}") + } + } + catalog.lighting.each { String id -> + if (!new File(blockStates, "${id}.json").isFile() + || !new File(itemModels, "${id}.json").isFile()) { + throw new GradleException("Lighting catalog entry is missing assets: ${id}") + } + } + } +} + +tasks.named('check') { + dependsOn tasks.named('verifyFurnitureCatalog') +} diff --git a/gradle/furniture-catalog.json b/gradle/furniture-catalog.json new file mode 100644 index 0000000000..5d551b7fb2 --- /dev/null +++ b/gradle/furniture-catalog.json @@ -0,0 +1,52 @@ +{ + "schema": 1, + "minecraft": "1.18.2", + "loader": "forge", + "colours": [ + "black", "blue", "brown", "cyan", "gray", "green", "light_blue", "light_gray", + "lime", "magenta", "orange", "pink", "purple", "red", "white", "yellow" + ], + "woods": { + "vanilla": ["oak", "acacia", "dark_oak", "birch", "jungle", "spruce", "warped", "crimson"], + "biomesoplenty": [ + "biomesoplenty_cherry", "biomesoplenty_dead", "biomesoplenty_fir", + "biomesoplenty_hellbark", "biomesoplenty_jacaranda", "biomesoplenty_magic", + "biomesoplenty_mahogany", "biomesoplenty_palm", "biomesoplenty_redwood", + "biomesoplenty_umbran", "biomesoplenty_willow" + ], + "byg": [ + "byg_aspen", "byg_baobab", "byg_blue_enchanted", "byg_bulbis", "byg_cherry", + "byg_cika", "byg_cypress", "byg_ebony", "byg_embur", "byg_ether", "byg_fir", + "byg_green_enchanted", "byg_holly", + "byg_jacaranda", "byg_lament", "byg_mahogany", "byg_mangrove", "byg_maple", + "byg_nightshade", "byg_palm", "byg_pine", "byg_rainbow_eucalyptus", + "byg_redwood", "byg_skyris", "byg_willow", "byg_witch_hazel", "byg_zelkova" + ], + "immersiveengineering": ["immersiveengineering_treated_wood"] + }, + "fireproofWoods": ["warped", "crimson"], + "lighting": [ + "light_metal_ironage_sconce_floor_empty_iron", + "light_metal_ironage_sconce_wall_empty_iron", + "light_metal_ironage_sconce_floor_torch_iron", + "light_metal_ironage_sconce_floor_torch_iron_unlit", + "light_metal_ironage_sconce_wall_torch_iron", + "light_metal_ironage_sconce_wall_torch_iron_unlit", + "light_metal_ironage_sconce_floor_redtorch_iron", + "light_metal_ironage_sconce_floor_redtorch_iron_unlit", + "light_metal_ironage_sconce_wall_redtorch_iron", + "light_metal_ironage_sconce_wall_redtorch_iron_unlit", + "light_metal_ironage_sconce_floor_soultorch_iron", + "light_metal_ironage_sconce_wall_soultorch_iron", + "light_metal_ironage_block_floor_glow_clear", + "light_metal_ironage_sconce_floor_glow_iron", + "light_metal_ironage_sconce_wall_glow_iron", + "light_metal_ironage_block_floor_lava_clear", + "light_metal_ironage_sconce_floor_lava_iron", + "light_metal_ironage_sconce_wall_lava_iron", + "light_metal_ironage_block_floor_red_clear", + "light_metal_ironage_sconce_floor_red_iron", + "light_metal_ironage_sconce_wall_red_iron", + "obsidian_chunk" + ] +} diff --git a/gradle/verification/optional-integration-mods.json b/gradle/verification/optional-integration-mods.json new file mode 100644 index 0000000000..c74a755247 --- /dev/null +++ b/gradle/verification/optional-integration-mods.json @@ -0,0 +1,37 @@ +{ + "minecraft": "1.18.2", + "mods": [ + { + "modId": "biomesoplenty", + "role": "integration", + "version": "16.0.0.134", + "file": "BiomesOPlenty-1.18.2-16.0.0.134.jar", + "sha256": "1d2a95bc7f32944ac5b8332dfd14b6b4168ff47ed1d72dde64604f27550c4bdb", + "source": "https://modrinth.com/mod/biomes-o-plenty/version/rPn6qGL9" + }, + { + "modId": "byg", + "role": "integration", + "version": "1.5.1", + "file": "Oh_The_Biomes_You'll_Go-forge-1.18.2-1.5.1.jar", + "sha256": "09530bba0cce33b6b22b0aa3662af954e04f4332d5c80f867e43831623637012", + "source": "https://modrinth.com/mod/biomesyougo/version/4Bo5c6or" + }, + { + "modId": "immersiveengineering", + "role": "integration", + "version": "1.18.2-8.4.0-161", + "file": "ImmersiveEngineering-1.18.2-8.4.0-161.jar", + "sha256": "6e9b1ad1fc29d10863465bb48c65ad4d5df74042a5b0ee50c6289b687cd38a74", + "source": "https://modrinth.com/mod/immersiveengineering/version/g7u3ovfs" + }, + { + "modId": "terrablender", + "role": "dependency", + "version": "1.2.0.126", + "file": "TerraBlender-forge-1.18.2-1.2.0.126.jar", + "sha256": "77efe21003e4968460652dda1454f4777ca0a5c77fe84d698259cf4472dafa04", + "source": "https://modrinth.com/mod/terrablender/version/dH8dFULh" + } + ] +} diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 7454180f2a..0d4a951687 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 41dfb87909..2c68b418fa 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip +distributionSha256Sum=9c0f7faeeb306cb14e4279a3e084ca6b596894089a0638e68a07c945a32c9e14 zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew index c53aefaa5f..cccdd3d517 100644 --- a/gradlew +++ b/gradlew @@ -1,129 +1,78 @@ -#!/bin/sh - -# -# Copyright © 2015-2021 the original authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# +#!/usr/bin/env sh ############################################################################## -# -# Gradle start up script for POSIX generated by Gradle. -# -# Important for running: -# -# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is -# noncompliant, but you have some other compliant shell such as ksh or -# bash, then to run this script, type that shell name before the whole -# command line, like: -# -# ksh Gradle -# -# Busybox and similar reduced shells will NOT work, because this script -# requires all of these POSIX shell features: -# * functions; -# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», -# «${var#prefix}», «${var%suffix}», and «$( cmd )»; -# * compound commands having a testable exit status, especially «case»; -# * various built-in commands including «command», «set», and «ulimit». -# -# Important for patching: -# -# (2) This script targets any POSIX shell, so it avoids extensions provided -# by Bash, Ksh, etc; in particular arrays are avoided. -# -# The "traditional" practice of packing multiple parameters into a -# space-separated string is a well documented source of bugs and security -# problems, so this is (mostly) avoided, by progressively accumulating -# options in "$@", and eventually passing that to Java. -# -# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, -# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; -# see the in-line comments for details. -# -# There are tweaks for specific operating systems such as AIX, CygWin, -# Darwin, MinGW, and NonStop. -# -# (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt -# within the Gradle project. -# -# You can find Gradle at https://github.com/gradle/gradle/. -# +## +## Gradle start up script for UN*X +## ############################################################################## # Attempt to set APP_HOME - # Resolve links: $0 may be a link -app_path=$0 - -# Need this for daisy-chained symlinks. -while - APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path - [ -h "$app_path" ] -do - ls=$( ls -ld "$app_path" ) - link=${ls#*' -> '} - case $link in #( - /*) app_path=$link ;; #( - *) app_path=$APP_HOME$link ;; - esac +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi done - -APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >/dev/null +APP_HOME="`pwd -P`" +cd "$SAVED" >/dev/null APP_NAME="Gradle" -APP_BASE_NAME=${0##*/} +APP_BASE_NAME=`basename "$0"` # 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"' +DEFAULT_JVM_OPTS="" # Use the maximum available, or set MAX_FD != -1 to use that value. -MAX_FD=maximum +MAX_FD="maximum" warn () { echo "$*" -} >&2 +} die () { echo echo "$*" echo exit 1 -} >&2 +} # OS specific support (must be 'true' or 'false'). cygwin=false msys=false darwin=false nonstop=false -case "$( uname )" in #( - CYGWIN* ) cygwin=true ;; #( - Darwin* ) darwin=true ;; #( - MSYS* | MINGW* ) msys=true ;; #( - NONSTOP* ) nonstop=true ;; +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; + NONSTOP* ) + nonstop=true + ;; esac CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar - # Determine the Java command to use to start the JVM. if [ -n "$JAVA_HOME" ] ; then if [ -x "$JAVA_HOME/jre/sh/java" ] ; then # IBM's JDK on AIX uses strange locations for the executables - JAVACMD=$JAVA_HOME/jre/sh/java + JAVACMD="$JAVA_HOME/jre/sh/java" else - JAVACMD=$JAVA_HOME/bin/java + JAVACMD="$JAVA_HOME/bin/java" fi if [ ! -x "$JAVACMD" ] ; then die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME @@ -132,7 +81,7 @@ Please set the JAVA_HOME variable in your environment to match the location of your Java installation." fi else - JAVACMD=java + 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. Please set the JAVA_HOME variable in your environment to match the @@ -140,95 +89,84 @@ location of your Java installation." fi # Increase the maximum file descriptors if we can. -if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then - case $MAX_FD in #( - max*) - MAX_FD=$( ulimit -H -n ) || - warn "Could not query maximum file descriptor limit" - esac - case $MAX_FD in #( - '' | soft) :;; #( - *) - ulimit -n "$MAX_FD" || - warn "Could not set maximum file descriptor limit to $MAX_FD" - esac +if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi fi -# Collect all arguments for the java command, stacking in reverse order: -# * args from the command line -# * the main class name -# * -classpath -# * -D...appname settings -# * --module-path (only if needed) -# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. - -# For Cygwin or MSYS, switch paths to Windows format before running java -if "$cygwin" || "$msys" ; then - APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) - CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) - - JAVACMD=$( cygpath --unix "$JAVACMD" ) +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi +# For Cygwin, switch paths to Windows format before running java +if $cygwin ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + JAVACMD=`cygpath --unix "$JAVACMD"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi # Now convert the arguments - kludge to limit ourselves to /bin/sh - for arg do - if - case $arg in #( - -*) false ;; # don't mess with options #( - /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath - [ -e "$t" ] ;; #( - *) false ;; - esac - then - arg=$( cygpath --path --ignore --mixed "$arg" ) + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" fi - # Roll the args list around exactly as many times as the number of - # args, so each arg winds up back in the position where it started, but - # possibly modified. - # - # NB: a `for` loop captures its iteration list before it begins, so - # changing the positional parameters here affects neither the number of - # iterations, nor the values presented in `arg`. - shift # remove old arg - set -- "$@" "$arg" # push replacement arg + i=$((i+1)) done + case $i in + (0) set -- ;; + (1) set -- "$args0" ;; + (2) set -- "$args0" "$args1" ;; + (3) set -- "$args0" "$args1" "$args2" ;; + (4) set -- "$args0" "$args1" "$args2" "$args3" ;; + (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac 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. - -set -- \ - "-Dorg.gradle.appname=$APP_BASE_NAME" \ - -classpath "$CLASSPATH" \ - org.gradle.wrapper.GradleWrapperMain \ - "$@" - -# Use "xargs" to parse quoted args. -# -# With -n1 it outputs one arg per line, with the quotes and backslashes removed. -# -# In Bash we could simply go: -# -# readarray ARGS < <( xargs -n1 <<<"$var" ) && -# set -- "${ARGS[@]}" "$@" -# -# but POSIX shell has neither arrays nor command substitution, so instead we -# post-process each arg (as a line of input to sed) to backslash-escape any -# character that might be a shell metacharacter, then use eval to reverse -# that process (while maintaining the separation between arguments), and wrap -# the whole thing up as a single "set" statement. -# -# This will of course break if any of these variables contains a newline or -# an unmatched quote. -# - -eval "set -- $( - printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | - xargs -n1 | - sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | - tr '\n' ' ' - )" '"$@"' +# Escape application args +save () { + for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done + echo " " +} +APP_ARGS=$(save "$@") + +# Collect all arguments for the java command, following the shell quoting and substitution rules +eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" + +# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong +if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then + cd "$(dirname "$0")" +fi exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat index 107acd32c4..f9553162f1 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -1,19 +1,3 @@ -@rem -@rem Copyright 2015 the original author or authors. -@rem -@rem Licensed under the Apache License, Version 2.0 (the "License"); -@rem you may not use this file except in compliance with the License. -@rem You may obtain a copy of the License at -@rem -@rem https://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. -@rem - @if "%DEBUG%" == "" @echo off @rem ########################################################################## @rem @@ -29,18 +13,15 @@ if "%DIRNAME%" == "" set DIRNAME=. set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% -@rem Resolve any "." and ".." in APP_HOME to make it shorter. -for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi - @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" +set DEFAULT_JVM_OPTS= @rem Find java.exe if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute +if "%ERRORLEVEL%" == "0" goto init echo. echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. @@ -54,7 +35,7 @@ goto fail set JAVA_HOME=%JAVA_HOME:"=% set JAVA_EXE=%JAVA_HOME%/bin/java.exe -if exist "%JAVA_EXE%" goto execute +if exist "%JAVA_EXE%" goto init echo. echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% @@ -64,14 +45,28 @@ echo location of your Java installation. goto fail +:init +@rem Get command-line arguments, handling Windows variants + +if not "%OS%" == "Windows_NT" goto win9xME_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* + :execute @rem Setup the command line set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar - @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%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% :end @rem End local scope for the variables with windows NT shell diff --git a/settings.gradle b/settings.gradle index f74c120a55..dee88414df 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,33 +1,15 @@ -// Workaround to make the JUnit Platform Gradle Plugin available using the `plugins` DSL -// See https://github.com/junit-team/junit5/issues/768 -if (!(GradleVersion.current() <= GradleVersion.version('2.14.1'))) { pluginManagement { - repositories { - gradlePluginPortal() - maven { url = ArtifactRepositoryContainer.MAVEN_CENTRAL_URL } - } - resolutionStrategy { - eachPlugin { - if (requested.id.id == 'org.junit.platform.gradle.plugin') { - useModule("org.junit.platform:junit-platform-gradle-plugin:${requested.version}") -// } else if (requested.id.id == 'org.junit.platform.gradle.plugin') { -// useModule("org.junit.platform:junit-platform-gradle-plugin:${requested.version}") - } + repositories { + gradlePluginPortal() + maven { + name = 'MinecraftForge' + url = 'https://maven.minecraftforge.net/' + } } - } -} } -rootProject.name = archivesBaseName -import org.gradle.util.GradleVersion -if ((GradleVersion.current() >= GradleVersion.version('4.8')) && (GradleVersion.current() <= GradleVersion.version('4.10.3'))) { - enableFeaturePreview('STABLE_PUBLISHING') // 4.10.3 +plugins { + id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0' } -// TODO: Things which likely don't work with FG yet, but I've not checked. -/* -if ((GradleVersion.current() >= GradleVersion.version('4.6')) && (GradleVersion.current() <= GradleVersion.version('4.10.3'))) { - enableFeaturePreview('IMPROVED_POM_SUPPORT') // Previously -Dorg.gradle.advancedpomsupport=true - enableFeaturePreview('GRADLE_METADATA') // Previously -Dorg.gradle.gradlemetadata=true -} -*/ +rootProject.name = 'IronAgeFurniture' diff --git a/src/main/java/com/mcmoddev/ironagefurniture/BlockObjectHolder.java b/src/main/java/com/mcmoddev/ironagefurniture/BlockObjectHolder.java deleted file mode 100644 index 40be6a11f8..0000000000 --- a/src/main/java/com/mcmoddev/ironagefurniture/BlockObjectHolder.java +++ /dev/null @@ -1,5338 +0,0 @@ -package com.mcmoddev.ironagefurniture; - -import net.minecraft.world.level.block.Block; -import net.minecraftforge.fml.common.Mod; -import net.minecraftforge.registries.ObjectHolder; - -@Mod.EventBusSubscriber(modid = Ironagefurniture.MODID, bus = Mod.EventBusSubscriber.Bus.MOD) -@ObjectHolder(Ironagefurniture.MODID) -public class BlockObjectHolder { - public static final Block light_metal_ironage_sconce_floor_empty_iron = null; - public static final Block light_metal_ironage_sconce_wall_empty_iron = null; - - public static final Block light_metal_ironage_sconce_floor_torch_iron = null; - public static final Block light_metal_ironage_sconce_floor_torch_iron_unlit = null; - public static final Block light_metal_ironage_sconce_wall_torch_iron = null; - public static final Block light_metal_ironage_sconce_wall_torch_iron_unlit = null; - - public static final Block light_metal_ironage_sconce_floor_redtorch_iron = null; - public static final Block light_metal_ironage_sconce_floor_redtorch_iron_unlit = null; - public static final Block light_metal_ironage_sconce_wall_redtorch_iron = null; - public static final Block light_metal_ironage_sconce_wall_redtorch_iron_unlit = null; - - public static final Block light_metal_ironage_block_floor_glow_clear = null; - public static final Block light_metal_ironage_sconce_floor_glow_iron = null; - public static final Block light_metal_ironage_sconce_wall_glow_iron = null; - - public static final Block light_metal_ironage_block_floor_lava_clear = null; - public static final Block light_metal_ironage_sconce_floor_lava_iron = null; - public static final Block light_metal_ironage_sconce_wall_lava_iron = null; - - public static final Block light_metal_ironage_block_floor_red_clear = null; - public static final Block light_metal_ironage_block_floor_red_clear_one = null; - public static final Block light_metal_ironage_block_floor_red_clear_two = null; - public static final Block light_metal_ironage_block_floor_red_clear_three = null; - public static final Block light_metal_ironage_block_floor_red_clear_four = null; - public static final Block light_metal_ironage_block_floor_red_clear_five = null; - public static final Block light_metal_ironage_block_floor_red_clear_six = null; - public static final Block light_metal_ironage_block_floor_red_clear_seven = null; - public static final Block light_metal_ironage_block_floor_red_clear_eight = null; - public static final Block light_metal_ironage_block_floor_red_clear_nine = null; - public static final Block light_metal_ironage_block_floor_red_clear_ten = null; - public static final Block light_metal_ironage_block_floor_red_clear_eleven = null; - public static final Block light_metal_ironage_block_floor_red_clear_twelve = null; - public static final Block light_metal_ironage_block_floor_red_clear_thirteen = null; - public static final Block light_metal_ironage_block_floor_red_clear_fourteen = null; - public static final Block light_metal_ironage_block_floor_red_clear_fifteen = null; - - public static final Block light_metal_ironage_sconce_floor_red_iron = null; - public static final Block light_metal_ironage_sconce_floor_red_iron_one = null; - public static final Block light_metal_ironage_sconce_floor_red_iron_two = null; - public static final Block light_metal_ironage_sconce_floor_red_iron_three = null; - public static final Block light_metal_ironage_sconce_floor_red_iron_four = null; - public static final Block light_metal_ironage_sconce_floor_red_iron_five = null; - public static final Block light_metal_ironage_sconce_floor_red_iron_six = null; - public static final Block light_metal_ironage_sconce_floor_red_iron_seven = null; - public static final Block light_metal_ironage_sconce_floor_red_iron_eight = null; - public static final Block light_metal_ironage_sconce_floor_red_iron_nine = null; - public static final Block light_metal_ironage_sconce_floor_red_iron_ten = null; - public static final Block light_metal_ironage_sconce_floor_red_iron_eleven = null; - public static final Block light_metal_ironage_sconce_floor_red_iron_twelve = null; - public static final Block light_metal_ironage_sconce_floor_red_iron_thirteen = null; - public static final Block light_metal_ironage_sconce_floor_red_iron_fourteen = null; - public static final Block light_metal_ironage_sconce_floor_red_iron_fifteen = null; - - public static final Block light_metal_ironage_sconce_wall_red_iron = null; - public static final Block light_metal_ironage_sconce_wall_red_iron_one = null; - public static final Block light_metal_ironage_sconce_wall_red_iron_two = null; - public static final Block light_metal_ironage_sconce_wall_red_iron_three = null; - public static final Block light_metal_ironage_sconce_wall_red_iron_four = null; - public static final Block light_metal_ironage_sconce_wall_red_iron_five = null; - public static final Block light_metal_ironage_sconce_wall_red_iron_six = null; - public static final Block light_metal_ironage_sconce_wall_red_iron_seven = null; - public static final Block light_metal_ironage_sconce_wall_red_iron_eight = null; - public static final Block light_metal_ironage_sconce_wall_red_iron_nine = null; - public static final Block light_metal_ironage_sconce_wall_red_iron_ten = null; - public static final Block light_metal_ironage_sconce_wall_red_iron_eleven = null; - public static final Block light_metal_ironage_sconce_wall_red_iron_twelve = null; - public static final Block light_metal_ironage_sconce_wall_red_iron_thirteen = null; - public static final Block light_metal_ironage_sconce_wall_red_iron_fourteen = null; - public static final Block light_metal_ironage_sconce_wall_red_iron_fifteen = null; - - public static final Block light_metal_ironage_sconce_floor_soultorch_iron = null; - public static final Block light_metal_ironage_sconce_wall_soultorch_iron = null; - public static final Block obsidian_chunk = null; - - public static final Block chair_wood_ironage_classic_oak = null; - public static final Block chair_wood_ironage_classic_acacia = null; - public static final Block chair_wood_ironage_classic_dark_oak = null; - public static final Block chair_wood_ironage_classic_birch = null; - public static final Block chair_wood_ironage_classic_jungle = null; - public static final Block chair_wood_ironage_classic_spruce = null; - - public static final Block chair_wood_ironage_shield_oak = null; - public static final Block chair_wood_ironage_shield_acacia = null; - public static final Block chair_wood_ironage_shield_dark_oak = null; - public static final Block chair_wood_ironage_shield_birch = null; - public static final Block chair_wood_ironage_shield_jungle = null; - public static final Block chair_wood_ironage_shield_spruce = null; - - public static final Block chair_wood_ironage_stool_short_oak = null; - public static final Block chair_wood_ironage_stool_short_acacia = null; - public static final Block chair_wood_ironage_stool_short_dark_oak = null; - public static final Block chair_wood_ironage_stool_short_birch = null; - public static final Block chair_wood_ironage_stool_short_jungle = null; - public static final Block chair_wood_ironage_stool_short_spruce = null; - - public static final Block chair_wood_ironage_stool_tall_acacia = null; - public static final Block chair_wood_ironage_stool_tall_dark_oak = null; - public static final Block chair_wood_ironage_stool_tall_birch = null; - public static final Block chair_wood_ironage_stool_tall_jungle = null; - public static final Block chair_wood_ironage_stool_tall_oak = null; - public static final Block chair_wood_ironage_stool_tall_spruce = null; - - public static final Block chair_wood_ironage_bench_single_oak = null; - public static final Block chair_wood_ironage_bench_single_acacia = null; - public static final Block chair_wood_ironage_bench_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_single_birch = null; - public static final Block chair_wood_ironage_bench_single_jungle = null; - public static final Block chair_wood_ironage_bench_single_spruce = null; - - public static final Block chair_wood_ironage_bench_back_single_oak = null; - public static final Block chair_wood_ironage_bench_back_single_acacia = null; - public static final Block chair_wood_ironage_bench_back_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_back_single_birch = null; - public static final Block chair_wood_ironage_bench_back_single_jungle = null; - public static final Block chair_wood_ironage_bench_back_single_spruce = null; - - public static final Block chair_wood_ironage_bench_log_single_oak = null; - public static final Block chair_wood_ironage_bench_log_single_acacia = null; - public static final Block chair_wood_ironage_bench_log_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_log_single_birch = null; - public static final Block chair_wood_ironage_bench_log_single_jungle = null; - public static final Block chair_wood_ironage_bench_log_single_spruce = null; - - public static final Block chair_wood_ironage_bench_padded_green_single_oak = null; - public static final Block chair_wood_ironage_bench_padded_green_single_acacia = null; - public static final Block chair_wood_ironage_bench_padded_green_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_padded_green_single_birch = null; - public static final Block chair_wood_ironage_bench_padded_green_single_jungle = null; - public static final Block chair_wood_ironage_bench_padded_green_single_spruce = null; - - public static final Block chair_wood_ironage_bench_back_padded_green_single_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_acacia = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_birch = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_jungle = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_spruce = null; - - public static final Block chair_wood_ironage_bench_padded_light_blue_single_oak = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_acacia = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_birch = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_jungle = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_spruce = null; - - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_acacia = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_birch = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_jungle = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_spruce = null; - - public static final Block chair_wood_ironage_bench_padded_light_gray_single_oak = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_acacia = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_birch = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_jungle = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_spruce = null; - - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_acacia = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_birch = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_jungle = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_spruce = null; - - public static final Block chair_wood_ironage_bench_padded_lime_single_oak = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_acacia = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_birch = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_jungle = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_spruce = null; - - public static final Block chair_wood_ironage_bench_back_padded_lime_single_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_acacia = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_birch = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_jungle = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_spruce = null; - - public static final Block chair_wood_ironage_bench_padded_magenta_single_oak = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_acacia = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_birch = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_jungle = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_spruce = null; - - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_acacia = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_birch = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_jungle = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_spruce = null; - - public static final Block chair_wood_ironage_bench_padded_orange_single_oak = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_acacia = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_birch = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_jungle = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_spruce = null; - - public static final Block chair_wood_ironage_bench_back_padded_orange_single_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_acacia = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_birch = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_jungle = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_spruce = null; - - public static final Block chair_wood_ironage_bench_padded_pink_single_oak = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_acacia = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_birch = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_jungle = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_spruce = null; - - public static final Block chair_wood_ironage_bench_back_padded_pink_single_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_acacia = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_birch = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_jungle = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_spruce = null; - - public static final Block chair_wood_ironage_bench_padded_purple_single_oak = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_acacia = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_birch = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_jungle = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_spruce = null; - - public static final Block chair_wood_ironage_bench_back_padded_purple_single_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_acacia = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_birch = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_jungle = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_spruce = null; - - public static final Block chair_wood_ironage_bench_padded_red_single_oak = null; - public static final Block chair_wood_ironage_bench_padded_red_single_acacia = null; - public static final Block chair_wood_ironage_bench_padded_red_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_padded_red_single_birch = null; - public static final Block chair_wood_ironage_bench_padded_red_single_jungle = null; - public static final Block chair_wood_ironage_bench_padded_red_single_spruce = null; - - public static final Block chair_wood_ironage_bench_back_padded_red_single_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_acacia = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_birch = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_jungle = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_spruce = null; - - public static final Block chair_wood_ironage_bench_padded_white_single_oak = null; - public static final Block chair_wood_ironage_bench_padded_white_single_acacia = null; - public static final Block chair_wood_ironage_bench_padded_white_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_padded_white_single_birch = null; - public static final Block chair_wood_ironage_bench_padded_white_single_jungle = null; - public static final Block chair_wood_ironage_bench_padded_white_single_spruce = null; - - public static final Block chair_wood_ironage_bench_back_padded_white_single_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_acacia = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_birch = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_jungle = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_spruce = null; - - public static final Block chair_wood_ironage_bench_padded_yellow_single_oak = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_acacia = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_birch = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_jungle = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_spruce = null; - - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_acacia = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_birch = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_jungle = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_spruce = null; - - public static final Block chair_wood_ironage_bench_padded_black_single_oak = null; - public static final Block chair_wood_ironage_bench_padded_black_single_acacia = null; - public static final Block chair_wood_ironage_bench_padded_black_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_padded_black_single_birch = null; - public static final Block chair_wood_ironage_bench_padded_black_single_jungle = null; - public static final Block chair_wood_ironage_bench_padded_black_single_spruce = null; - - public static final Block chair_wood_ironage_bench_back_padded_black_single_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_acacia = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_birch = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_jungle = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_spruce = null; - - public static final Block chair_wood_ironage_bench_padded_blue_single_oak = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_acacia = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_birch = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_jungle = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_spruce = null; - - public static final Block chair_wood_ironage_bench_back_padded_blue_single_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_acacia = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_birch = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_jungle = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_spruce = null; - - public static final Block chair_wood_ironage_bench_padded_brown_single_oak = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_acacia = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_birch = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_jungle = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_spruce = null; - - public static final Block chair_wood_ironage_bench_back_padded_brown_single_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_acacia = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_birch = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_jungle = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_spruce = null; - - public static final Block chair_wood_ironage_bench_padded_cyan_single_oak = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_acacia = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_birch = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_jungle = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_spruce = null; - - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_acacia = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_birch = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_jungle = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_spruce = null; - - public static final Block chair_wood_ironage_bench_padded_gray_single_oak = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_acacia = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_birch = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_jungle = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_spruce = null; - - public static final Block chair_wood_ironage_bench_back_padded_gray_single_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_acacia = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_dark_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_birch = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_jungle = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_spruce = null; - - public static final Block chair_wood_ironage_bench_back_left_warped = null; - public static final Block chair_wood_ironage_bench_back_middle_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_warped = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_warped = null; - public static final Block chair_wood_ironage_bench_back_right_warped = null; - public static final Block chair_wood_ironage_bench_back_single_warped = null; - public static final Block chair_wood_ironage_bench_left_warped = null; - public static final Block chair_wood_ironage_bench_log_left_warped = null; - public static final Block chair_wood_ironage_bench_log_middle_warped = null; - public static final Block chair_wood_ironage_bench_log_right_warped = null; - public static final Block chair_wood_ironage_bench_log_single_warped = null; - public static final Block chair_wood_ironage_bench_middle_warped = null; - public static final Block chair_wood_ironage_bench_padded_green_left_warped = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_warped = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_warped = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_warped = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_warped = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_warped = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_warped = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_warped = null; - public static final Block chair_wood_ironage_bench_padded_red_left_warped = null; - public static final Block chair_wood_ironage_bench_padded_white_left_warped = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_warped = null; - public static final Block chair_wood_ironage_bench_padded_black_left_warped = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_warped = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_warped = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_warped = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_warped = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_warped = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_warped = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_warped = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_warped = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_warped = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_warped = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_warped = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_warped = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_warped = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_warped = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_warped = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_warped = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_warped = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_warped = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_warped = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_warped = null; - public static final Block chair_wood_ironage_bench_padded_green_right_warped = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_warped = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_warped = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_warped = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_warped = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_warped = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_warped = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_warped = null; - public static final Block chair_wood_ironage_bench_padded_red_right_warped = null; - public static final Block chair_wood_ironage_bench_padded_white_right_warped = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_warped = null; - public static final Block chair_wood_ironage_bench_padded_black_right_warped = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_warped = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_warped = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_warped = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_warped = null; - public static final Block chair_wood_ironage_bench_padded_green_single_warped = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_warped = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_warped = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_warped = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_warped = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_warped = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_warped = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_warped = null; - public static final Block chair_wood_ironage_bench_padded_red_single_warped = null; - public static final Block chair_wood_ironage_bench_padded_white_single_warped = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_warped = null; - public static final Block chair_wood_ironage_bench_padded_black_single_warped = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_warped = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_warped = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_warped = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_warped = null; - public static final Block chair_wood_ironage_bench_right_warped = null; - public static final Block chair_wood_ironage_bench_single_warped = null; - public static final Block chair_wood_ironage_classic_warped = null; - public static final Block chair_wood_ironage_shield_warped = null; - public static final Block chair_wood_ironage_stool_short_warped = null; - public static final Block chair_wood_ironage_stool_tall_warped = null; - public static final Block chair_wood_ironage_bench_back_left_crimson = null; - public static final Block chair_wood_ironage_bench_back_middle_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_crimson = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_crimson = null; - public static final Block chair_wood_ironage_bench_back_right_crimson = null; - public static final Block chair_wood_ironage_bench_back_single_crimson = null; - public static final Block chair_wood_ironage_bench_left_crimson = null; - public static final Block chair_wood_ironage_bench_log_left_crimson = null; - public static final Block chair_wood_ironage_bench_log_middle_crimson = null; - public static final Block chair_wood_ironage_bench_log_right_crimson = null; - public static final Block chair_wood_ironage_bench_log_single_crimson = null; - public static final Block chair_wood_ironage_bench_middle_crimson = null; - public static final Block chair_wood_ironage_bench_padded_green_left_crimson = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_crimson = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_crimson = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_crimson = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_crimson = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_crimson = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_crimson = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_crimson = null; - public static final Block chair_wood_ironage_bench_padded_red_left_crimson = null; - public static final Block chair_wood_ironage_bench_padded_white_left_crimson = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_crimson = null; - public static final Block chair_wood_ironage_bench_padded_black_left_crimson = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_crimson = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_crimson = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_crimson = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_crimson = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_crimson = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_crimson = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_crimson = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_crimson = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_crimson = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_crimson = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_crimson = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_crimson = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_crimson = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_crimson = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_crimson = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_crimson = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_crimson = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_crimson = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_crimson = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_crimson = null; - public static final Block chair_wood_ironage_bench_padded_green_right_crimson = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_crimson = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_crimson = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_crimson = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_crimson = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_crimson = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_crimson = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_crimson = null; - public static final Block chair_wood_ironage_bench_padded_red_right_crimson = null; - public static final Block chair_wood_ironage_bench_padded_white_right_crimson = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_crimson = null; - public static final Block chair_wood_ironage_bench_padded_black_right_crimson = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_crimson = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_crimson = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_crimson = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_crimson = null; - public static final Block chair_wood_ironage_bench_padded_green_single_crimson = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_crimson = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_crimson = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_crimson = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_crimson = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_crimson = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_crimson = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_crimson = null; - public static final Block chair_wood_ironage_bench_padded_red_single_crimson = null; - public static final Block chair_wood_ironage_bench_padded_white_single_crimson = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_crimson = null; - public static final Block chair_wood_ironage_bench_padded_black_single_crimson = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_crimson = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_crimson = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_crimson = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_crimson = null; - public static final Block chair_wood_ironage_bench_right_crimson = null; - public static final Block chair_wood_ironage_bench_single_crimson = null; - public static final Block chair_wood_ironage_classic_crimson = null; - public static final Block chair_wood_ironage_shield_crimson = null; - public static final Block chair_wood_ironage_stool_short_crimson = null; - public static final Block chair_wood_ironage_stool_tall_crimson = null; - - public static final Block chair_wood_ironage_classic_biomesoplenty_cherry = null; // cherry_planks - public static final Block chair_wood_ironage_classic_biomesoplenty_fir = null; // fir_planks - public static final Block chair_wood_ironage_classic_biomesoplenty_hellbark = null; // hellbark_planks - public static final Block chair_wood_ironage_classic_biomesoplenty_jacaranda = null; // jacaranda_planks - public static final Block chair_wood_ironage_classic_biomesoplenty_magic = null; // magic_planks - public static final Block chair_wood_ironage_classic_biomesoplenty_mahogany = null; // mahogany_planks - public static final Block chair_wood_ironage_classic_biomesoplenty_palm = null; // palm_planks - public static final Block chair_wood_ironage_classic_biomesoplenty_redwood = null; // redwood_planks - public static final Block chair_wood_ironage_classic_biomesoplenty_umbran = null; // umbran_planks - public static final Block chair_wood_ironage_classic_biomesoplenty_willow = null; // willow_planks - public static final Block chair_wood_ironage_classic_biomesoplenty_dead = null; // dead_planks - - public static final Block chair_wood_ironage_shield_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_shield_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_shield_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_shield_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_shield_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_shield_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_shield_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_shield_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_shield_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_shield_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_shield_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_stool_short_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_stool_short_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_stool_short_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_stool_short_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_stool_short_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_stool_short_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_stool_short_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_stool_short_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_stool_short_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_stool_short_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_stool_short_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_stool_tall_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_stool_tall_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_stool_tall_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_stool_tall_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_stool_tall_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_stool_tall_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_stool_tall_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_stool_tall_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_stool_tall_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_stool_tall_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_stool_tall_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_back_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_back_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_back_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_back_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_back_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_back_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_back_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_back_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_back_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_log_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_log_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_log_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_log_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_log_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_log_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_log_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_log_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_log_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_log_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_log_single_biomesoplenty_dead = null; - - - public static final Block chair_wood_ironage_bench_padded_green_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_padded_green_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_padded_green_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_padded_green_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_green_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_padded_green_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_green_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_padded_green_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_padded_green_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_padded_green_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_padded_green_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_padded_lime_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_padded_orange_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_padded_pink_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_padded_purple_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_padded_white_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_padded_white_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_padded_white_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_padded_white_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_white_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_padded_white_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_white_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_padded_white_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_padded_white_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_padded_white_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_padded_white_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_padded_black_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_padded_black_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_padded_black_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_padded_black_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_black_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_padded_black_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_black_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_padded_black_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_padded_black_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_padded_black_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_padded_black_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_padded_blue_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_padded_brown_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_padded_gray_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_hellbark = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_magic = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_umbran = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_dead = null; - - public static final Block chair_wood_ironage_bench_back_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_black_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_black_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_black_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_green_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_green_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_green_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_green_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_red_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_red_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_red_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_white_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_white_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_white_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_back_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_back_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_back_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_back_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_back_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_back_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_back_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_back_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_back_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_back_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_back_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_back_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_back_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_back_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_back_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_back_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_back_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_back_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_back_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_back_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_back_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_back_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_back_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_back_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_back_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_back_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_back_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_back_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_log_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_log_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_log_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_log_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_log_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_log_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_log_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_log_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_log_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_log_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_log_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_log_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_log_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_log_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_log_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_log_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_log_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_log_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_log_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_log_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_log_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_log_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_log_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_log_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_log_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_log_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_log_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_log_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_log_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_log_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_log_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_log_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_log_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_log_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_log_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_log_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_log_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_log_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_log_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_log_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_log_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_log_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_log_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_log_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_log_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_log_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_log_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_log_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_log_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_log_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_log_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_log_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_log_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_log_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_log_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_log_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_log_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_log_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_log_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_log_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_log_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_log_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_log_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_log_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_log_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_log_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_log_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_log_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_log_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_log_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_log_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_log_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_log_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_log_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_log_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_log_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_log_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_log_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_log_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_log_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_log_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_log_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_log_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_log_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_log_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_log_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_log_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_log_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_black_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_black_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_black_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_black_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_blue_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_blue_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_blue_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_brown_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_brown_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_brown_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_cyan_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_cyan_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_cyan_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_gray_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_gray_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_gray_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_green_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_green_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_green_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_green_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_lime_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_lime_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_lime_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_magenta_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_magenta_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_magenta_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_orange_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_orange_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_orange_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_pink_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_pink_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_pink_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_purple_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_purple_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_purple_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_red_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_red_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_red_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_red_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_white_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_white_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_white_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_white_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_yellow_left_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_yellow_middle_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_yellow_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_right_byg_aspen = null; - public static final Block chair_wood_ironage_bench_right_byg_baobab = null; - public static final Block chair_wood_ironage_bench_right_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_right_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_right_byg_cherry = null; - public static final Block chair_wood_ironage_bench_right_byg_cika = null; - public static final Block chair_wood_ironage_bench_right_byg_cypress = null; - public static final Block chair_wood_ironage_bench_right_byg_ebony = null; - public static final Block chair_wood_ironage_bench_right_byg_embur = null; - public static final Block chair_wood_ironage_bench_right_byg_ether = null; - public static final Block chair_wood_ironage_bench_right_byg_fir = null; - public static final Block chair_wood_ironage_bench_right_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_right_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_right_byg_holly = null; - public static final Block chair_wood_ironage_bench_right_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_right_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_right_byg_lament = null; - public static final Block chair_wood_ironage_bench_right_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_right_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_right_byg_maple = null; - public static final Block chair_wood_ironage_bench_right_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_right_byg_palm = null; - public static final Block chair_wood_ironage_bench_right_byg_pine = null; - public static final Block chair_wood_ironage_bench_right_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_right_byg_redwood = null; - public static final Block chair_wood_ironage_bench_right_byg_skyris = null; - public static final Block chair_wood_ironage_bench_right_byg_willow = null; - public static final Block chair_wood_ironage_bench_right_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_right_byg_zelkova = null; - public static final Block chair_wood_ironage_bench_single_byg_aspen = null; - public static final Block chair_wood_ironage_bench_single_byg_baobab = null; - public static final Block chair_wood_ironage_bench_single_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_bench_single_byg_bulbis = null; - public static final Block chair_wood_ironage_bench_single_byg_cherry = null; - public static final Block chair_wood_ironage_bench_single_byg_cika = null; - public static final Block chair_wood_ironage_bench_single_byg_cypress = null; - public static final Block chair_wood_ironage_bench_single_byg_ebony = null; - public static final Block chair_wood_ironage_bench_single_byg_embur = null; - public static final Block chair_wood_ironage_bench_single_byg_ether = null; - public static final Block chair_wood_ironage_bench_single_byg_fir = null; - public static final Block chair_wood_ironage_bench_single_byg_glacial_oak = null; - public static final Block chair_wood_ironage_bench_single_byg_green_enchanted = null; - public static final Block chair_wood_ironage_bench_single_byg_holly = null; - public static final Block chair_wood_ironage_bench_single_byg_ironwood = null; - public static final Block chair_wood_ironage_bench_single_byg_jacaranda = null; - public static final Block chair_wood_ironage_bench_single_byg_lament = null; - public static final Block chair_wood_ironage_bench_single_byg_mahogany = null; - public static final Block chair_wood_ironage_bench_single_byg_mangrove = null; - public static final Block chair_wood_ironage_bench_single_byg_maple = null; - public static final Block chair_wood_ironage_bench_single_byg_nightshade = null; - public static final Block chair_wood_ironage_bench_single_byg_palm = null; - public static final Block chair_wood_ironage_bench_single_byg_pine = null; - public static final Block chair_wood_ironage_bench_single_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_bench_single_byg_redwood = null; - public static final Block chair_wood_ironage_bench_single_byg_skyris = null; - public static final Block chair_wood_ironage_bench_single_byg_willow = null; - public static final Block chair_wood_ironage_bench_single_byg_witch_hazel = null; - public static final Block chair_wood_ironage_bench_single_byg_zelkova = null; - public static final Block chair_wood_ironage_classic_byg_aspen = null; - public static final Block chair_wood_ironage_classic_byg_baobab = null; - public static final Block chair_wood_ironage_classic_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_classic_byg_bulbis = null; - public static final Block chair_wood_ironage_classic_byg_cherry = null; - public static final Block chair_wood_ironage_classic_byg_cika = null; - public static final Block chair_wood_ironage_classic_byg_cypress = null; - public static final Block chair_wood_ironage_classic_byg_ebony = null; - public static final Block chair_wood_ironage_classic_byg_embur = null; - public static final Block chair_wood_ironage_classic_byg_ether = null; - public static final Block chair_wood_ironage_classic_byg_fir = null; - public static final Block chair_wood_ironage_classic_byg_glacial_oak = null; - public static final Block chair_wood_ironage_classic_byg_green_enchanted = null; - public static final Block chair_wood_ironage_classic_byg_holly = null; - public static final Block chair_wood_ironage_classic_byg_ironwood = null; - public static final Block chair_wood_ironage_classic_byg_jacaranda = null; - public static final Block chair_wood_ironage_classic_byg_lament = null; - public static final Block chair_wood_ironage_classic_byg_mahogany = null; - public static final Block chair_wood_ironage_classic_byg_mangrove = null; - public static final Block chair_wood_ironage_classic_byg_maple = null; - public static final Block chair_wood_ironage_classic_byg_nightshade = null; - public static final Block chair_wood_ironage_classic_byg_palm = null; - public static final Block chair_wood_ironage_classic_byg_pine = null; - public static final Block chair_wood_ironage_classic_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_classic_byg_redwood = null; - public static final Block chair_wood_ironage_classic_byg_skyris = null; - public static final Block chair_wood_ironage_classic_byg_willow = null; - public static final Block chair_wood_ironage_classic_byg_witch_hazel = null; - public static final Block chair_wood_ironage_classic_byg_zelkova = null; - public static final Block chair_wood_ironage_shield_byg_aspen = null; - public static final Block chair_wood_ironage_shield_byg_baobab = null; - public static final Block chair_wood_ironage_shield_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_shield_byg_bulbis = null; - public static final Block chair_wood_ironage_shield_byg_cherry = null; - public static final Block chair_wood_ironage_shield_byg_cika = null; - public static final Block chair_wood_ironage_shield_byg_cypress = null; - public static final Block chair_wood_ironage_shield_byg_ebony = null; - public static final Block chair_wood_ironage_shield_byg_embur = null; - public static final Block chair_wood_ironage_shield_byg_ether = null; - public static final Block chair_wood_ironage_shield_byg_fir = null; - public static final Block chair_wood_ironage_shield_byg_glacial_oak = null; - public static final Block chair_wood_ironage_shield_byg_green_enchanted = null; - public static final Block chair_wood_ironage_shield_byg_holly = null; - public static final Block chair_wood_ironage_shield_byg_ironwood = null; - public static final Block chair_wood_ironage_shield_byg_jacaranda = null; - public static final Block chair_wood_ironage_shield_byg_lament = null; - public static final Block chair_wood_ironage_shield_byg_mahogany = null; - public static final Block chair_wood_ironage_shield_byg_mangrove = null; - public static final Block chair_wood_ironage_shield_byg_maple = null; - public static final Block chair_wood_ironage_shield_byg_nightshade = null; - public static final Block chair_wood_ironage_shield_byg_palm = null; - public static final Block chair_wood_ironage_shield_byg_pine = null; - public static final Block chair_wood_ironage_shield_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_shield_byg_redwood = null; - public static final Block chair_wood_ironage_shield_byg_skyris = null; - public static final Block chair_wood_ironage_shield_byg_willow = null; - public static final Block chair_wood_ironage_shield_byg_witch_hazel = null; - public static final Block chair_wood_ironage_shield_byg_zelkova = null; - public static final Block chair_wood_ironage_stool_short_byg_aspen = null; - public static final Block chair_wood_ironage_stool_short_byg_baobab = null; - public static final Block chair_wood_ironage_stool_short_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_stool_short_byg_bulbis = null; - public static final Block chair_wood_ironage_stool_short_byg_cherry = null; - public static final Block chair_wood_ironage_stool_short_byg_cika = null; - public static final Block chair_wood_ironage_stool_short_byg_cypress = null; - public static final Block chair_wood_ironage_stool_short_byg_ebony = null; - public static final Block chair_wood_ironage_stool_short_byg_embur = null; - public static final Block chair_wood_ironage_stool_short_byg_ether = null; - public static final Block chair_wood_ironage_stool_short_byg_fir = null; - public static final Block chair_wood_ironage_stool_short_byg_glacial_oak = null; - public static final Block chair_wood_ironage_stool_short_byg_green_enchanted = null; - public static final Block chair_wood_ironage_stool_short_byg_holly = null; - public static final Block chair_wood_ironage_stool_short_byg_ironwood = null; - public static final Block chair_wood_ironage_stool_short_byg_jacaranda = null; - public static final Block chair_wood_ironage_stool_short_byg_lament = null; - public static final Block chair_wood_ironage_stool_short_byg_mahogany = null; - public static final Block chair_wood_ironage_stool_short_byg_mangrove = null; - public static final Block chair_wood_ironage_stool_short_byg_maple = null; - public static final Block chair_wood_ironage_stool_short_byg_nightshade = null; - public static final Block chair_wood_ironage_stool_short_byg_palm = null; - public static final Block chair_wood_ironage_stool_short_byg_pine = null; - public static final Block chair_wood_ironage_stool_short_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_stool_short_byg_redwood = null; - public static final Block chair_wood_ironage_stool_short_byg_skyris = null; - public static final Block chair_wood_ironage_stool_short_byg_willow = null; - public static final Block chair_wood_ironage_stool_short_byg_witch_hazel = null; - public static final Block chair_wood_ironage_stool_short_byg_zelkova = null; - public static final Block chair_wood_ironage_stool_tall_byg_aspen = null; - public static final Block chair_wood_ironage_stool_tall_byg_baobab = null; - public static final Block chair_wood_ironage_stool_tall_byg_blue_enchanted = null; - public static final Block chair_wood_ironage_stool_tall_byg_bulbis = null; - public static final Block chair_wood_ironage_stool_tall_byg_cherry = null; - public static final Block chair_wood_ironage_stool_tall_byg_cika = null; - public static final Block chair_wood_ironage_stool_tall_byg_cypress = null; - public static final Block chair_wood_ironage_stool_tall_byg_ebony = null; - public static final Block chair_wood_ironage_stool_tall_byg_embur = null; - public static final Block chair_wood_ironage_stool_tall_byg_ether = null; - public static final Block chair_wood_ironage_stool_tall_byg_fir = null; - public static final Block chair_wood_ironage_stool_tall_byg_glacial_oak = null; - public static final Block chair_wood_ironage_stool_tall_byg_green_enchanted = null; - public static final Block chair_wood_ironage_stool_tall_byg_holly = null; - public static final Block chair_wood_ironage_stool_tall_byg_ironwood = null; - public static final Block chair_wood_ironage_stool_tall_byg_jacaranda = null; - public static final Block chair_wood_ironage_stool_tall_byg_lament = null; - public static final Block chair_wood_ironage_stool_tall_byg_mahogany = null; - public static final Block chair_wood_ironage_stool_tall_byg_mangrove = null; - public static final Block chair_wood_ironage_stool_tall_byg_maple = null; - public static final Block chair_wood_ironage_stool_tall_byg_nightshade = null; - public static final Block chair_wood_ironage_stool_tall_byg_palm = null; - public static final Block chair_wood_ironage_stool_tall_byg_pine = null; - public static final Block chair_wood_ironage_stool_tall_byg_rainbow_eucalyptus = null; - public static final Block chair_wood_ironage_stool_tall_byg_redwood = null; - public static final Block chair_wood_ironage_stool_tall_byg_skyris = null; - public static final Block chair_wood_ironage_stool_tall_byg_willow = null; - public static final Block chair_wood_ironage_stool_tall_byg_witch_hazel = null; - public static final Block chair_wood_ironage_stool_tall_byg_zelkova = null; - - public static final Block chair_wood_ironage_classic_immersiveengineering_treated_wood = null; - - public static final Block chair_wood_ironage_shield_immersiveengineering_treated_wood = null; - - public static final Block chair_wood_ironage_stool_short_immersiveengineering_treated_wood = null; - - public static final Block chair_wood_ironage_stool_tall_immersiveengineering_treated_wood = null; - - public static final Block chair_wood_ironage_bench_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood = null; - - public static final Block chair_wood_ironage_bench_padded_green_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_padded_light_blue_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_padded_light_gray_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_padded_lime_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_padded_magenta_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_padded_orange_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_padded_pink_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_padded_purple_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_padded_white_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_padded_yellow_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_padded_black_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_padded_blue_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_padded_brown_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_padded_cyan_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_padded_gray_single_immersiveengineering_treated_wood = null; - - public static final Block chair_wood_ironage_bench_back_padded_green_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_blue_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_back_padded_light_gray_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_back_padded_lime_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_back_padded_magenta_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_back_padded_orange_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_back_padded_pink_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_back_padded_purple_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_back_padded_white_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_back_padded_yellow_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_back_padded_black_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_back_padded_blue_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_back_padded_brown_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_back_padded_cyan_single_immersiveengineering_treated_wood = null; - public static final Block chair_wood_ironage_bench_back_padded_gray_single_immersiveengineering_treated_wood = null; -} diff --git a/src/main/java/com/mcmoddev/ironagefurniture/proxy/ClientProxy.java b/src/main/java/com/mcmoddev/ironagefurniture/proxy/ClientProxy.java deleted file mode 100644 index 7405def9b8..0000000000 --- a/src/main/java/com/mcmoddev/ironagefurniture/proxy/ClientProxy.java +++ /dev/null @@ -1,9 +0,0 @@ -package com.mcmoddev.ironagefurniture.proxy; - -public class ClientProxy extends CommonProxy { - - @Override - public void onSetupClient() { - super.onSetupClient(); - } -} diff --git a/src/main/java/com/mcmoddev/ironagefurniture/proxy/CommonProxy.java b/src/main/java/com/mcmoddev/ironagefurniture/proxy/CommonProxy.java deleted file mode 100644 index 8f86f1d182..0000000000 --- a/src/main/java/com/mcmoddev/ironagefurniture/proxy/CommonProxy.java +++ /dev/null @@ -1,18 +0,0 @@ -package com.mcmoddev.ironagefurniture.proxy; - -import com.mcmoddev.ironagefurniture.client.renderer.SeatRenderer; -import com.mcmoddev.ironagefurniture.registers.entities; - -import net.minecraft.client.renderer.entity.EntityRenderers; - -public class CommonProxy { - public void onSetupCommon() - { - - } - - public void onSetupClient() { - - EntityRenderers.register(entities.SEAT.get(), SeatRenderer::new); - } -} diff --git a/src/main/java/zone/moddev/mc/ironagefurniture/BlockObjectHolder.java b/src/main/java/zone/moddev/mc/ironagefurniture/BlockObjectHolder.java new file mode 100644 index 0000000000..8b98c6ebb0 --- /dev/null +++ b/src/main/java/zone/moddev/mc/ironagefurniture/BlockObjectHolder.java @@ -0,0 +1,88 @@ +package zone.moddev.mc.ironagefurniture; + +import net.minecraft.world.level.block.Block; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.registries.ObjectHolder; + +/** + * Holds the always-present blocks used directly by gameplay and rendering code. + * Furniture blocks are resolved from the registry after their optional catalog + * has been registered, avoiding missing-object lookups when an integration is + * not installed. + */ +@Mod.EventBusSubscriber(modid = Ironagefurniture.MODID, bus = Mod.EventBusSubscriber.Bus.MOD) +@ObjectHolder(Ironagefurniture.MODID) +public final class BlockObjectHolder { + public static final Block light_metal_ironage_sconce_floor_empty_iron = null; + public static final Block light_metal_ironage_sconce_wall_empty_iron = null; + public static final Block light_metal_ironage_sconce_floor_torch_iron = null; + public static final Block light_metal_ironage_sconce_floor_torch_iron_unlit = null; + public static final Block light_metal_ironage_sconce_wall_torch_iron = null; + public static final Block light_metal_ironage_sconce_wall_torch_iron_unlit = null; + public static final Block light_metal_ironage_sconce_floor_redtorch_iron = null; + public static final Block light_metal_ironage_sconce_floor_redtorch_iron_unlit = null; + public static final Block light_metal_ironage_sconce_wall_redtorch_iron = null; + public static final Block light_metal_ironage_sconce_wall_redtorch_iron_unlit = null; + public static final Block light_metal_ironage_block_floor_glow_clear = null; + public static final Block light_metal_ironage_sconce_floor_glow_iron = null; + public static final Block light_metal_ironage_sconce_wall_glow_iron = null; + public static final Block light_metal_ironage_block_floor_lava_clear = null; + public static final Block light_metal_ironage_sconce_floor_lava_iron = null; + public static final Block light_metal_ironage_sconce_wall_lava_iron = null; + public static final Block light_metal_ironage_block_floor_red_clear = null; + public static final Block light_metal_ironage_block_floor_red_clear_one = null; + public static final Block light_metal_ironage_block_floor_red_clear_two = null; + public static final Block light_metal_ironage_block_floor_red_clear_three = null; + public static final Block light_metal_ironage_block_floor_red_clear_four = null; + public static final Block light_metal_ironage_block_floor_red_clear_five = null; + public static final Block light_metal_ironage_block_floor_red_clear_six = null; + public static final Block light_metal_ironage_block_floor_red_clear_seven = null; + public static final Block light_metal_ironage_block_floor_red_clear_eight = null; + public static final Block light_metal_ironage_block_floor_red_clear_nine = null; + public static final Block light_metal_ironage_block_floor_red_clear_ten = null; + public static final Block light_metal_ironage_block_floor_red_clear_eleven = null; + public static final Block light_metal_ironage_block_floor_red_clear_twelve = null; + public static final Block light_metal_ironage_block_floor_red_clear_thirteen = null; + public static final Block light_metal_ironage_block_floor_red_clear_fourteen = null; + public static final Block light_metal_ironage_block_floor_red_clear_fifteen = null; + public static final Block light_metal_ironage_sconce_floor_red_iron = null; + public static final Block light_metal_ironage_sconce_floor_red_iron_one = null; + public static final Block light_metal_ironage_sconce_floor_red_iron_two = null; + public static final Block light_metal_ironage_sconce_floor_red_iron_three = null; + public static final Block light_metal_ironage_sconce_floor_red_iron_four = null; + public static final Block light_metal_ironage_sconce_floor_red_iron_five = null; + public static final Block light_metal_ironage_sconce_floor_red_iron_six = null; + public static final Block light_metal_ironage_sconce_floor_red_iron_seven = null; + public static final Block light_metal_ironage_sconce_floor_red_iron_eight = null; + public static final Block light_metal_ironage_sconce_floor_red_iron_nine = null; + public static final Block light_metal_ironage_sconce_floor_red_iron_ten = null; + public static final Block light_metal_ironage_sconce_floor_red_iron_eleven = null; + public static final Block light_metal_ironage_sconce_floor_red_iron_twelve = null; + public static final Block light_metal_ironage_sconce_floor_red_iron_thirteen = null; + public static final Block light_metal_ironage_sconce_floor_red_iron_fourteen = null; + public static final Block light_metal_ironage_sconce_floor_red_iron_fifteen = null; + public static final Block light_metal_ironage_sconce_wall_red_iron = null; + public static final Block light_metal_ironage_sconce_wall_red_iron_one = null; + public static final Block light_metal_ironage_sconce_wall_red_iron_two = null; + public static final Block light_metal_ironage_sconce_wall_red_iron_three = null; + public static final Block light_metal_ironage_sconce_wall_red_iron_four = null; + public static final Block light_metal_ironage_sconce_wall_red_iron_five = null; + public static final Block light_metal_ironage_sconce_wall_red_iron_six = null; + public static final Block light_metal_ironage_sconce_wall_red_iron_seven = null; + public static final Block light_metal_ironage_sconce_wall_red_iron_eight = null; + public static final Block light_metal_ironage_sconce_wall_red_iron_nine = null; + public static final Block light_metal_ironage_sconce_wall_red_iron_ten = null; + public static final Block light_metal_ironage_sconce_wall_red_iron_eleven = null; + public static final Block light_metal_ironage_sconce_wall_red_iron_twelve = null; + public static final Block light_metal_ironage_sconce_wall_red_iron_thirteen = null; + public static final Block light_metal_ironage_sconce_wall_red_iron_fourteen = null; + public static final Block light_metal_ironage_sconce_wall_red_iron_fifteen = null; + public static final Block light_metal_ironage_sconce_floor_soultorch_iron = null; + public static final Block light_metal_ironage_sconce_wall_soultorch_iron = null; + public static final Block obsidian_chunk = null; + // The creative-tab icon is always part of the vanilla furniture catalog. + public static final Block chair_wood_ironage_classic_dark_oak = null; + + private BlockObjectHolder() { + } +} diff --git a/src/main/java/com/mcmoddev/ironagefurniture/IronAgeFurnitureConfiguration.java b/src/main/java/zone/moddev/mc/ironagefurniture/IronAgeFurnitureConfiguration.java similarity index 98% rename from src/main/java/com/mcmoddev/ironagefurniture/IronAgeFurnitureConfiguration.java rename to src/main/java/zone/moddev/mc/ironagefurniture/IronAgeFurnitureConfiguration.java index 8849787a64..305db77fe0 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/IronAgeFurnitureConfiguration.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/IronAgeFurnitureConfiguration.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture; +package zone.moddev.mc.ironagefurniture; import net.minecraftforge.common.ForgeConfigSpec; import org.apache.commons.lang3.tuple.Pair; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/Ironagefurniture.java b/src/main/java/zone/moddev/mc/ironagefurniture/Ironagefurniture.java similarity index 73% rename from src/main/java/com/mcmoddev/ironagefurniture/Ironagefurniture.java rename to src/main/java/zone/moddev/mc/ironagefurniture/Ironagefurniture.java index 2d44a3d35e..36b498794b 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/Ironagefurniture.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/Ironagefurniture.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture; +package zone.moddev.mc.ironagefurniture; import net.minecraft.world.item.CreativeModeTab; import net.minecraft.world.item.ItemStack; @@ -9,16 +9,18 @@ import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent; import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent; import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; -import com.mcmoddev.ironagefurniture.proxy.CommonProxy; -import com.mcmoddev.ironagefurniture.registers.entities; +import zone.moddev.mc.ironagefurniture.proxy.CommonProxy; +import zone.moddev.mc.ironagefurniture.registers.entities; +import zone.moddev.mc.ironagefurniture.api.CreativeModeBreakTracker; +import zone.moddev.mc.ironagefurniture.migration.LegacyWorldDataHook; import net.minecraftforge.fml.config.ModConfig; @Mod(Ironagefurniture.MODID) public class Ironagefurniture { public static final String MODID = "ironagefurniture"; - public static final String VERSION = "0.2.5.0"; - public static final CommonProxy PROXY = DistExecutor.runForDist(() -> com.mcmoddev.ironagefurniture.proxy.ClientProxy::new, () -> CommonProxy::new); + public static final String VERSION = "0.3.0.118021"; + public static final CommonProxy PROXY = DistExecutor.runForDist(() -> zone.moddev.mc.ironagefurniture.proxy.ClientProxy::new, () -> CommonProxy::new); public static final CreativeModeTab IAF_GROUP = new CreativeModeTab(MODID) { @Override @@ -37,6 +39,8 @@ public Ironagefurniture() { FMLJavaModLoadingContext.get().getModEventBus().addListener(this::onClientSetup); MinecraftForge.EVENT_BUS.register(this); + MinecraftForge.EVENT_BUS.register(new CreativeModeBreakTracker()); + MinecraftForge.EVENT_BUS.addListener(LegacyWorldDataHook::onServerAboutToStart); } private void onCommonSetup(FMLCommonSetupEvent event) { diff --git a/src/main/java/zone/moddev/mc/ironagefurniture/api/CreativeModeBreakTracker.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/CreativeModeBreakTracker.java new file mode 100644 index 0000000000..9055313b1e --- /dev/null +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/CreativeModeBreakTracker.java @@ -0,0 +1,89 @@ +package zone.moddev.mc.ironagefurniture.api; + +import java.util.ArrayList; +import java.util.Iterator; +import java.util.List; +import java.util.Map; +import java.util.WeakHashMap; + +import net.minecraft.core.BlockPos; +import net.minecraft.core.Direction; +import net.minecraft.world.entity.player.Player; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.Block; +import net.minecraftforge.event.world.BlockEvent; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; + +/** + * Associates a falling lava light with the creative-mode support break that + * caused it. This avoids suppressing a survival lamp merely because another + * creative player happens to be nearby. + */ +public final class CreativeModeBreakTracker { + private static final long RECENT_BREAK_TICKS = 200L; + private static final Map> BREAKS = new WeakHashMap<>(); + + @SubscribeEvent + public void onBlockBreak(BlockEvent.BreakEvent event) { + Player player = event.getPlayer(); + + if (!(event.getWorld() instanceof Level) || player == null || !player.getAbilities().instabuild) + return; + + Level level = (Level) event.getWorld(); + if (!level.isClientSide && isNearLavaFallingLight(level, event.getPos())) + remember(level, event.getPos()); + } + + public static boolean shouldSuppressFallingLavaBreak(Level level, BlockPos landingPos) { + List breaks = BREAKS.get(level); + if (breaks == null) + return false; + + long now = level.getGameTime(); + Iterator iterator = breaks.iterator(); + while (iterator.hasNext()) { + BreakRecord record = iterator.next(); + if (now - record.time > RECENT_BREAK_TICKS) { + iterator.remove(); + continue; + } + + if (Math.abs(record.pos.getX() - landingPos.getX()) <= 1 + && Math.abs(record.pos.getZ() - landingPos.getZ()) <= 1 + && record.pos.getY() >= landingPos.getY()) { + iterator.remove(); + return true; + } + } + + return false; + } + + private static void remember(Level level, BlockPos pos) { + BREAKS.computeIfAbsent(level, ignored -> new ArrayList<>()) + .add(new BreakRecord(pos.immutable(), level.getGameTime())); + } + + private static boolean isNearLavaFallingLight(Level level, BlockPos pos) { + if (isLavaFallingLight(level.getBlockState(pos.above()).getBlock()) + || isLavaFallingLight(level.getBlockState(pos.below()).getBlock())) + return true; + + for (Direction direction : Direction.Plane.HORIZONTAL) { + if (isLavaFallingLight(level.getBlockState(pos.relative(direction)).getBlock())) + return true; + } + return false; + } + + private static boolean isLavaFallingLight(Block block) { + return block == BlockObjectHolder.light_metal_ironage_block_floor_lava_clear + || block == BlockObjectHolder.light_metal_ironage_sconce_floor_lava_iron + || block == BlockObjectHolder.light_metal_ironage_sconce_wall_lava_iron; + } + + private record BreakRecord(BlockPos pos, long time) { + } +} diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/base/FallingFurnitureBlock.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/base/FallingFurnitureBlock.java similarity index 97% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/base/FallingFurnitureBlock.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/base/FallingFurnitureBlock.java index 8f33f2fe06..2620c45893 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/base/FallingFurnitureBlock.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/base/FallingFurnitureBlock.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture.api.blocks.base; +package zone.moddev.mc.ironagefurniture.api.blocks.base; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/base/FurnitureBlock.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/base/FurnitureBlock.java similarity index 98% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/base/FurnitureBlock.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/base/FurnitureBlock.java index 39689cb21c..fb7e0c1d56 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/base/FurnitureBlock.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/base/FurnitureBlock.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture.api.blocks.base; +package zone.moddev.mc.ironagefurniture.api.blocks.base; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/base/LightHolder.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/base/LightHolder.java similarity index 95% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/base/LightHolder.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/base/LightHolder.java index 03f5ff45d8..3fb0cb269b 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/base/LightHolder.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/base/LightHolder.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture.api.blocks.base; +package zone.moddev.mc.ironagefurniture.api.blocks.base; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/base/LightHolderSconce.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/base/LightHolderSconce.java similarity index 87% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/base/LightHolderSconce.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/base/LightHolderSconce.java index 74af02554d..3fb929a656 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/base/LightHolderSconce.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/base/LightHolderSconce.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture.api.blocks.base; +package zone.moddev.mc.ironagefurniture.api.blocks.base; import net.minecraft.core.Direction; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/BackBench.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/BackBench.java similarity index 95% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/BackBench.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/BackBench.java index ec19558dab..79c988b141 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/BackBench.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/BackBench.java @@ -1,13 +1,13 @@ -package com.mcmoddev.ironagefurniture.api.blocks.furniture; +package zone.moddev.mc.ironagefurniture.api.blocks.furniture; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; -import com.mcmoddev.ironagefurniture.api.blocks.base.FurnitureBlock; -import com.mcmoddev.ironagefurniture.api.enumerations.BenchType; -import com.mcmoddev.ironagefurniture.api.enumerations.Rotation; -import com.mcmoddev.ironagefurniture.api.entity.Seat; -import com.mcmoddev.ironagefurniture.api.properties.BenchTypeProperty; -import com.mcmoddev.ironagefurniture.api.util.Swivel; +import zone.moddev.mc.ironagefurniture.api.blocks.base.FurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.enumerations.BenchType; +import zone.moddev.mc.ironagefurniture.api.enumerations.Rotation; +import zone.moddev.mc.ironagefurniture.api.entity.Seat; +import zone.moddev.mc.ironagefurniture.api.properties.BenchTypeProperty; +import zone.moddev.mc.ironagefurniture.api.util.Swivel; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.resources.ResourceLocation; @@ -41,6 +41,9 @@ import java.util.Objects; public class BackBench extends FurnitureBlock { + protected static final int FIRE_SPREAD_SPEED = 5; + protected static final int FLAMMABILITY = 20; + public static final BenchTypeProperty TYPE = BenchTypeProperty.create("type", BenchType.SINGLE, BenchType.LEFT, BenchType.MIDDLE, BenchType.RIGHT); public BackBench(float hardness, float blastResistance, SoundType sound, String name) { @@ -66,6 +69,16 @@ protected void createBlockStateDefinition(StateDefinition.Builder states) { diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/BackBenchNether.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/BackBenchNether.java similarity index 69% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/BackBenchNether.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/BackBenchNether.java index 9e1b1280f4..5c5f4680ed 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/BackBenchNether.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/BackBenchNether.java @@ -1,7 +1,7 @@ -package com.mcmoddev.ironagefurniture.api.blocks.furniture; +package zone.moddev.mc.ironagefurniture.api.blocks.furniture; -import com.mcmoddev.ironagefurniture.api.enumerations.BenchType; -import com.mcmoddev.ironagefurniture.api.properties.BenchTypeProperty; +import zone.moddev.mc.ironagefurniture.api.enumerations.BenchType; +import zone.moddev.mc.ironagefurniture.api.properties.BenchTypeProperty; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.world.level.BlockGetter; @@ -25,4 +25,14 @@ public BackBenchNether(float hardness, float blastResistance, SoundType sound, S public boolean isFlammable(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return false; } + + @Override + public int getFlammability(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { + return 0; + } + + @Override + public int getFireSpreadSpeed(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { + return 0; + } } diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/Bench.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/Bench.java similarity index 93% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/Bench.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/Bench.java index b174ffac6a..83e0112720 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/Bench.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/Bench.java @@ -1,9 +1,9 @@ -package com.mcmoddev.ironagefurniture.api.blocks.furniture; +package zone.moddev.mc.ironagefurniture.api.blocks.furniture; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; -import com.mcmoddev.ironagefurniture.api.enumerations.BenchType; -import com.mcmoddev.ironagefurniture.api.entity.Seat; +import zone.moddev.mc.ironagefurniture.api.enumerations.BenchType; +import zone.moddev.mc.ironagefurniture.api.entity.Seat; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockState; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/BenchNether.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/BenchNether.java similarity index 62% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/BenchNether.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/BenchNether.java index b62f5e8d24..1f9c0c487e 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/BenchNether.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/BenchNether.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture.api.blocks.furniture; +package zone.moddev.mc.ironagefurniture.api.blocks.furniture; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.level.block.SoundType; @@ -16,4 +16,14 @@ public BenchNether(float hardness, float blastResistance, SoundType sound, Strin public boolean isFlammable(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return false; } + + @Override + public int getFlammability(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { + return 0; + } + + @Override + public int getFireSpreadSpeed(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { + return 0; + } } diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/Chair.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/Chair.java similarity index 88% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/Chair.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/Chair.java index 7f9ded8416..75a3900802 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/Chair.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/Chair.java @@ -1,9 +1,9 @@ -package com.mcmoddev.ironagefurniture.api.blocks.furniture; +package zone.moddev.mc.ironagefurniture.api.blocks.furniture; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; -import com.mcmoddev.ironagefurniture.api.blocks.base.FallingFurnitureBlock; -import com.mcmoddev.ironagefurniture.api.entity.Seat; +import zone.moddev.mc.ironagefurniture.api.blocks.base.FallingFurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.entity.Seat; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.world.Container; @@ -32,6 +32,9 @@ import java.util.List; public class Chair extends FallingFurnitureBlock implements SimpleWaterloggedBlock { + protected static final int FIRE_SPREAD_SPEED = 5; + protected static final int FLAMMABILITY = 20; + @Override public List getDrops(BlockState state, Builder builder) { List drops; @@ -51,7 +54,17 @@ public int getAnalogOutputSignal(BlockState state, Level world, BlockPos pos) { @Override public boolean isFlammable(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { - return false; + return true; + } + + @Override + public int getFlammability(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { + return FLAMMABILITY; + } + + @Override + public int getFireSpreadSpeed(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { + return FIRE_SPREAD_SPEED; } @Override diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/ChairNether.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/ChairNether.java similarity index 79% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/ChairNether.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/ChairNether.java index 6977c1da14..1036be7e9d 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/ChairNether.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/ChairNether.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture.api.blocks.furniture; +package zone.moddev.mc.ironagefurniture.api.blocks.furniture; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; @@ -14,6 +14,16 @@ public class ChairNether extends Chair implements SimpleWaterloggedBlock { public boolean isFlammable(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return false; } + + @Override + public int getFlammability(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { + return 0; + } + + @Override + public int getFireSpreadSpeed(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { + return 0; + } public ChairNether(Properties properties) { super(properties); diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/LogBench.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/LogBench.java similarity index 93% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/LogBench.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/LogBench.java index e069aa3714..ba33d82685 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/LogBench.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/LogBench.java @@ -1,8 +1,8 @@ -package com.mcmoddev.ironagefurniture.api.blocks.furniture; +package zone.moddev.mc.ironagefurniture.api.blocks.furniture; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; -import com.mcmoddev.ironagefurniture.api.entity.Seat; +import zone.moddev.mc.ironagefurniture.api.entity.Seat; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockState; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/LogBenchNether.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/LogBenchNether.java similarity index 63% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/LogBenchNether.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/LogBenchNether.java index c2fdd37820..022e4c3138 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/LogBenchNether.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/LogBenchNether.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture.api.blocks.furniture; +package zone.moddev.mc.ironagefurniture.api.blocks.furniture; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.level.block.SoundType; @@ -16,4 +16,14 @@ public LogBenchNether(float hardness, float blastResistance, SoundType sound, St public boolean isFlammable(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return false; } + + @Override + public int getFlammability(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { + return 0; + } + + @Override + public int getFireSpreadSpeed(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { + return 0; + } } diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/Stool.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/Stool.java similarity index 94% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/Stool.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/Stool.java index 4eead8a607..6fe41a6407 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/Stool.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/Stool.java @@ -1,8 +1,8 @@ -package com.mcmoddev.ironagefurniture.api.blocks.furniture; +package zone.moddev.mc.ironagefurniture.api.blocks.furniture; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; -import com.mcmoddev.ironagefurniture.api.entity.Seat; +import zone.moddev.mc.ironagefurniture.api.entity.Seat; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockState; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/StoolNether.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/StoolNether.java similarity index 62% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/StoolNether.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/StoolNether.java index daa37c4271..b63e182b22 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/StoolNether.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/StoolNether.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture.api.blocks.furniture; +package zone.moddev.mc.ironagefurniture.api.blocks.furniture; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.level.block.SoundType; @@ -16,4 +16,14 @@ public StoolNether(float hardness, float blastResistance, SoundType sound, Strin public boolean isFlammable(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return false; } + + @Override + public int getFlammability(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { + return 0; + } + + @Override + public int getFireSpreadSpeed(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { + return 0; + } } diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/TallStool.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/TallStool.java similarity index 95% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/TallStool.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/TallStool.java index e51e4032d1..670a144de1 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/TallStool.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/TallStool.java @@ -1,8 +1,8 @@ -package com.mcmoddev.ironagefurniture.api.blocks.furniture; +package zone.moddev.mc.ironagefurniture.api.blocks.furniture; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; -import com.mcmoddev.ironagefurniture.api.entity.Seat; +import zone.moddev.mc.ironagefurniture.api.entity.Seat; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockState; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/TallStoolNether.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/TallStoolNether.java similarity index 63% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/TallStoolNether.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/TallStoolNether.java index 51feb5a229..487f06b5ce 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/furniture/TallStoolNether.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/furniture/TallStoolNether.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture.api.blocks.furniture; +package zone.moddev.mc.ironagefurniture.api.blocks.furniture; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.level.block.SoundType; @@ -16,4 +16,14 @@ public TallStoolNether(float hardness, float blastResistance, SoundType sound, S public boolean isFlammable(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return false; } + + @Override + public int getFlammability(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { + return 0; + } + + @Override + public int getFireSpreadSpeed(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { + return 0; + } } diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightholder/LightHolderSconceFloor.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightholder/LightHolderSconceFloor.java similarity index 97% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightholder/LightHolderSconceFloor.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightholder/LightHolderSconceFloor.java index f5d127e374..448a828d50 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightholder/LightHolderSconceFloor.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightholder/LightHolderSconceFloor.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightholder; +package zone.moddev.mc.ironagefurniture.api.blocks.lightholder; -import com.mcmoddev.ironagefurniture.api.blocks.base.LightHolderSconce; +import zone.moddev.mc.ironagefurniture.api.blocks.base.LightHolderSconce; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Blocks; import net.minecraft.world.level.block.state.BlockState; @@ -25,7 +25,7 @@ import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; import net.minecraft.core.BlockPos; import net.minecraft.world.phys.BlockHitResult; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightholder/LightHolderSconceWall.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightholder/LightHolderSconceWall.java similarity index 91% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightholder/LightHolderSconceWall.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightholder/LightHolderSconceWall.java index f609472331..31e7338237 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightholder/LightHolderSconceWall.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightholder/LightHolderSconceWall.java @@ -1,11 +1,11 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightholder; +package zone.moddev.mc.ironagefurniture.api.blocks.lightholder; import java.util.ArrayList; import java.util.List; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Blocks; @@ -41,11 +41,7 @@ public BlockState updateShape(BlockState state, Direction direction, BlockState public boolean canSurvive(BlockState state, LevelReader levelReader, BlockPos pos) { Direction direction = state.getValue(DIRECTION); BlockPos adjacentPos = pos.relative(direction.getOpposite()); - BlockState adjacentState = levelReader.getBlockState(adjacentPos); - - boolean isSturdy = adjacentState.isFaceSturdy(levelReader, adjacentPos, direction.getOpposite()); - - return isSturdy; + return Block.canSupportCenter(levelReader, adjacentPos, direction); } @Override diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/glow/LightSourceGlowdust.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/glow/LightSourceGlowdust.java similarity index 94% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/glow/LightSourceGlowdust.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/glow/LightSourceGlowdust.java index 7e7701823c..6a9ede0f8c 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/glow/LightSourceGlowdust.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/glow/LightSourceGlowdust.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.glow; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.glow; import java.util.ArrayList; import java.util.List; @@ -6,7 +6,7 @@ import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; -import com.mcmoddev.ironagefurniture.api.blocks.base.FallingFurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.blocks.base.FallingFurnitureBlock; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.world.item.Item; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/glow/LightSourceSconceGlowFloor.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/glow/LightSourceSconceGlowFloor.java similarity index 88% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/glow/LightSourceSconceGlowFloor.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/glow/LightSourceSconceGlowFloor.java index 1ed39d316d..f633bd5a21 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/glow/LightSourceSconceGlowFloor.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/glow/LightSourceSconceGlowFloor.java @@ -1,7 +1,7 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.glow; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.glow; -import com.mcmoddev.ironagefurniture.api.blocks.base.FurnitureBlock; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.base.FurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchFloor; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.LiquidBlockContainer; import net.minecraft.world.level.block.state.BlockBehaviour; @@ -12,7 +12,7 @@ import net.minecraft.core.particles.ParticleOptions; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; import net.minecraft.core.BlockPos; import net.minecraft.world.phys.shapes.VoxelShape; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/glow/LightSourceSconceGlowWall.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/glow/LightSourceSconceGlowWall.java similarity index 89% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/glow/LightSourceSconceGlowWall.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/glow/LightSourceSconceGlowWall.java index 342133319e..10c05bd15c 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/glow/LightSourceSconceGlowWall.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/glow/LightSourceSconceGlowWall.java @@ -1,7 +1,7 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.glow; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.glow; -import com.mcmoddev.ironagefurniture.api.blocks.base.FurnitureBlock; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchWall; +import zone.moddev.mc.ironagefurniture.api.blocks.base.FurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchWall; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; @@ -13,7 +13,7 @@ import net.minecraft.core.Direction; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; public class LightSourceSconceGlowWall extends LightSourceSconceTorchWall { public LightSourceSconceGlowWall(BlockBehaviour.Properties properties) { diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/lava/LightSourceLava.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/lava/LightSourceLava.java similarity index 61% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/lava/LightSourceLava.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/lava/LightSourceLava.java index e7b8ef317f..ab1946d433 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/lava/LightSourceLava.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/lava/LightSourceLava.java @@ -1,13 +1,14 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.lava; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.lava; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.Random; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; -import com.mcmoddev.ironagefurniture.api.blocks.base.FurnitureBlock; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.glow.LightSourceGlowdust; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.api.CreativeModeBreakTracker; +import zone.moddev.mc.ironagefurniture.api.blocks.base.FurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.glow.LightSourceGlowdust; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.core.particles.ParticleTypes; @@ -15,6 +16,7 @@ import net.minecraft.sounds.SoundSource; import net.minecraft.world.entity.item.FallingBlockEntity; import net.minecraft.world.entity.player.Player; +import net.minecraft.server.level.ServerLevel; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.context.BlockPlaceContext; import net.minecraft.world.item.enchantment.Enchantment; @@ -35,32 +37,36 @@ public class LightSourceLava extends LightSourceGlowdust { @Override - public void onLand(Level level, BlockPos pos, BlockState state, BlockState state2, FallingBlockEntity fallingEntity) { + public void onLand(Level level, BlockPos pos, BlockState state, BlockState replacedState, FallingBlockEntity fallingEntity) { + if (level.isClientSide || CreativeModeBreakTracker.shouldSuppressFallingLavaBreak(level, pos)) + return; + + if (replacedState.getFluidState().is(Fluids.WATER)) + breakIntoObsidianChunk(level, pos, state, null); + else + breakIntoFire(level, pos, null); + } - if (!level.isClientSide) { - Player nearestPlayer = level.getNearestPlayer(pos.getX(), pos.getY(), pos.getZ(), 10, false); - if (nearestPlayer != null && nearestPlayer.isCreative()) { - return; - } - } - - BlockState target = level.getBlockState(pos); + @Override + protected void falling(FallingBlockEntity fallingEntity) { + fallingEntity.dropItem = false; + } - if (target.getFluidState().getType() == Fluids.WATER) { - level.playSound(null, pos, SoundEvents.GLASS_BREAK, SoundSource.BLOCKS, friction, explosionResistance); - level.playSound(null, pos, SoundEvents.LAVA_EXTINGUISH, SoundSource.BLOCKS, friction, explosionResistance); - level.setBlock(pos, BlockObjectHolder.obsidian_chunk.defaultBlockState(), UPDATE_ALL_IMMEDIATE, UPDATE_ALL); - } else { - level.playSound(null, pos, SoundEvents.GLASS_BREAK, SoundSource.BLOCKS, friction, explosionResistance); - level.setBlock(pos, Blocks.FIRE.defaultBlockState(), UPDATE_ALL_IMMEDIATE, UPDATE_ALL); + @Override + public void tick(BlockState state, ServerLevel level, BlockPos pos, Random random) { + BlockPos below = pos.below(); + if (level.getBlockState(below).is(Blocks.ICE)) { + level.setBlockAndUpdate(below, Blocks.WATER.defaultBlockState()); + level.neighborChanged(below, Blocks.WATER, below); } + super.tick(state, level, pos, random); } public LightSourceLava(float hardness, float blastResistance, SoundType sound, String name) { super(Block.Properties.of(Material.METAL).strength(hardness, blastResistance).sound(sound).lightLevel((p_50886_) -> 15)); - this.registerDefaultState(this.getStateDefinition().any().setValue(DIRECTION, Direction.NORTH)); + this.registerDefaultState(this.getStateDefinition().any().setValue(DIRECTION, Direction.NORTH).setValue(WATERLOGGED, false)); this.generateShapes(this.getStateDefinition().getPossibleStates()); this.setRegistryName(name); } @@ -106,10 +112,8 @@ public boolean onDestroyedByPlayer(BlockState state, Level level, BlockPos pos, boolean destroyed = super.onDestroyedByPlayer(state, level, pos, player, willHarvest, fluid); - if (!isSilkTouch && !player.isCreative()) { - level.playSound(player, pos, SoundEvents.GLASS_BREAK, SoundSource.BLOCKS, friction, explosionResistance); - level.setBlock(pos, Blocks.FIRE.defaultBlockState(), UPDATE_ALL_IMMEDIATE, UPDATE_ALL); - } + if (!isSilkTouch && !player.isCreative()) + breakIntoFire(level, pos, player); return destroyed; } @@ -129,9 +133,10 @@ public BlockState getStateForPlacement(BlockPlaceContext context) { BlockState target = level.getBlockState(context.getClickedPos()); if (target.getFluidState().getType() == Fluids.WATER) { - level.playSound(context.getPlayer(), context.getClickedPos(), SoundEvents.GLASS_BREAK, SoundSource.BLOCKS, friction, explosionResistance); - level.playSound(context.getPlayer(), context.getClickedPos(), SoundEvents.LAVA_EXTINGUISH, SoundSource.BLOCKS, friction, explosionResistance); - return BlockObjectHolder.obsidian_chunk.defaultBlockState(); + playWaterBreakSounds(level, context.getClickedPos(), context.getPlayer()); + return BlockObjectHolder.obsidian_chunk.defaultBlockState() + .setValue(DIRECTION, context.getHorizontalDirection()) + .setValue(WATERLOGGED, true); } return super.getStateForPlacement(context); @@ -139,19 +144,35 @@ public BlockState getStateForPlacement(BlockPlaceContext context) { @Override public boolean placeLiquid(LevelAccessor world, BlockPos pos, BlockState blockState, FluidState fluidState) { - boolean success = super.placeLiquid(world, pos, blockState, fluidState); - if (!blockState.getValue(BlockStateProperties.WATERLOGGED) && fluidState.getType() == Fluids.WATER) { if (!world.isClientSide()) { - world.playSound(null, pos, SoundEvents.GLASS_BREAK, SoundSource.BLOCKS, friction, explosionResistance); - world.playSound(null, pos, SoundEvents.LAVA_EXTINGUISH, SoundSource.BLOCKS, friction, explosionResistance); - world.setBlock(pos, BlockObjectHolder.obsidian_chunk.defaultBlockState().setValue(DIRECTION, blockState.getValue(BlockStateProperties.HORIZONTAL_FACING)).setValue(WATERLOGGED, Boolean.valueOf(true)), UPDATE_ALL); + playWaterBreakSounds(world, pos, null); + world.setBlock(pos, BlockObjectHolder.obsidian_chunk.defaultBlockState() + .setValue(DIRECTION, blockState.getValue(BlockStateProperties.HORIZONTAL_FACING)) + .setValue(WATERLOGGED, true), UPDATE_ALL); world.scheduleTick(pos, fluidState.getType(), fluidState.getType().getTickDelay(world)); } - } else { - world.setBlock(pos, BlockObjectHolder.obsidian_chunk.defaultBlockState().setValue(DIRECTION, blockState.getValue(BlockStateProperties.HORIZONTAL_FACING)).setValue(WATERLOGGED, blockState.getValue(BlockStateProperties.WATERLOGGED)), UPDATE_ALL); + return true; } - return success; + return super.placeLiquid(world, pos, blockState, fluidState); + } + + private void breakIntoFire(Level level, BlockPos pos, Player player) { + level.playSound(player, pos, SoundEvents.GLASS_BREAK, SoundSource.BLOCKS, 1.0F, 1.0F); + level.setBlock(pos, Blocks.FIRE.defaultBlockState(), UPDATE_ALL); + } + + private void breakIntoObsidianChunk(Level level, BlockPos pos, BlockState lampState, Player player) { + playWaterBreakSounds(level, pos, player); + level.setBlock(pos, BlockObjectHolder.obsidian_chunk.defaultBlockState() + .setValue(DIRECTION, lampState.getValue(DIRECTION)) + .setValue(WATERLOGGED, true), UPDATE_ALL); + } + + private void playWaterBreakSounds(LevelAccessor level, BlockPos pos, Player player) { + level.playSound(player, pos, SoundEvents.GLASS_BREAK, SoundSource.BLOCKS, 1.0F, 1.0F); + level.playSound(player, pos, SoundEvents.LAVA_EXTINGUISH, SoundSource.BLOCKS, 0.5F, + 2.6F + (level.getRandom().nextFloat() - level.getRandom().nextFloat()) * 0.8F); } } diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/lava/LightSourceSconceLavaFloor.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/lava/LightSourceSconceLavaFloor.java similarity index 72% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/lava/LightSourceSconceLavaFloor.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/lava/LightSourceSconceLavaFloor.java index f353c17bbb..e45e3d957f 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/lava/LightSourceSconceLavaFloor.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/lava/LightSourceSconceLavaFloor.java @@ -1,13 +1,15 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.lava; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.lava; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; -import com.mcmoddev.ironagefurniture.api.blocks.base.FurnitureBlock; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.glow.LightSourceSconceGlowFloor; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.api.blocks.base.FurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.glow.LightSourceSconceGlowFloor; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.core.particles.ParticleTypes; import net.minecraft.sounds.SoundEvents; import net.minecraft.sounds.SoundSource; +import net.minecraft.server.TickTask; +import net.minecraft.server.level.ServerLevel; import net.minecraft.world.entity.player.Player; import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; @@ -38,16 +40,6 @@ public class LightSourceSconceLavaFloor extends LightSourceSconceGlowFloor imple @Override public BlockState updateShape(BlockState state, Direction direction, BlockState state2, LevelAccessor levelAccessor, BlockPos pos, BlockPos pos2) { if (direction == Direction.DOWN && !this.canSurvive(state, levelAccessor, pos)) { - if (levelAccessor instanceof Level level) { - // Check if the level is server-side - if (!level.isClientSide) { - Player nearestPlayer = level.getNearestPlayer(pos.getX(), pos.getY(), pos.getZ(), 10, false); - if (nearestPlayer != null && nearestPlayer.isCreative()) { - levelAccessor.destroyBlock(pos, false); - return Blocks.AIR.defaultBlockState(); - } - } - } levelAccessor.destroyBlock(pos, true); return LightDrop().defaultBlockState().setValue(FurnitureBlock.WATERLOGGED, false); } @@ -139,28 +131,26 @@ public void animateTick(BlockState state, Level level, BlockPos pos, Random rnd) public boolean placeLiquid(LevelAccessor world, BlockPos pos, BlockState blockState, FluidState fluidState) { boolean success = super.placeLiquid(world, pos, blockState, fluidState); - if (!blockState.getValue(BlockStateProperties.WATERLOGGED) && fluidState.getType() == Fluids.WATER) { - if (!world.isClientSide()) { - - world.setBlock(pos, EmptyVariant().defaultBlockState() - .setValue(FurnitureBlock.DIRECTION, blockState.getValue(BlockStateProperties.HORIZONTAL_FACING)) - .setValue(FurnitureBlock.WATERLOGGED, Boolean.valueOf(true)), Block.UPDATE_ALL); + if (!success || blockState.getValue(BlockStateProperties.WATERLOGGED) + || fluidState.getType() != Fluids.WATER || world.isClientSide()) { + return success; + } - world.playSound(null, pos, SoundEvents.GLASS_BREAK, SoundSource.BLOCKS, friction, explosionResistance); - world.playSound(null, pos, SoundEvents.LAVA_EXTINGUISH, SoundSource.BLOCKS, friction, explosionResistance); + world.setBlock(pos, EmptyVariant().defaultBlockState() + .setValue(FurnitureBlock.DIRECTION, blockState.getValue(BlockStateProperties.HORIZONTAL_FACING)) + .setValue(FurnitureBlock.WATERLOGGED, true), Block.UPDATE_ALL); - Block.dropResources(blockState, null); - world.setBlock(pos.below(), BlockObjectHolder.obsidian_chunk.defaultBlockState(), Block.UPDATE_ALL_IMMEDIATE, Block.UPDATE_ALL); - - world.scheduleTick(pos, fluidState.getType(), fluidState.getType().getTickDelay(world)); - } - } else { - world.setBlock(pos, EmptyVariant().defaultBlockState() - .setValue(FurnitureBlock.DIRECTION, blockState.getValue(BlockStateProperties.HORIZONTAL_FACING)) - .setValue(FurnitureBlock.WATERLOGGED, blockState.getValue(BlockStateProperties.WATERLOGGED)), Block.UPDATE_ALL); + world.playSound(null, pos, SoundEvents.GLASS_BREAK, SoundSource.BLOCKS, friction, explosionResistance); + world.playSound(null, pos, SoundEvents.LAVA_EXTINGUISH, SoundSource.BLOCKS, friction, explosionResistance); + if (world instanceof ServerLevel serverLevel) { + serverLevel.getServer().tell(new TickTask(serverLevel.getServer().getTickCount() + 1, () -> { + Block.popResource(serverLevel, pos, new ItemStack(BlockObjectHolder.obsidian_chunk, 1)); + })); } + world.scheduleTick(pos, fluidState.getType(), fluidState.getType().getTickDelay(world)); + return success; } } diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/lava/LightSourceSconceLavaWall.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/lava/LightSourceSconceLavaWall.java similarity index 72% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/lava/LightSourceSconceLavaWall.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/lava/LightSourceSconceLavaWall.java index 18fa3d73a6..c508380203 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/lava/LightSourceSconceLavaWall.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/lava/LightSourceSconceLavaWall.java @@ -1,12 +1,14 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.lava; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.lava; -import com.mcmoddev.ironagefurniture.api.blocks.base.FurnitureBlock; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.glow.LightSourceSconceGlowWall; +import zone.moddev.mc.ironagefurniture.api.blocks.base.FurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.glow.LightSourceSconceGlowWall; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Blocks; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.material.FluidState; +import net.minecraft.world.level.material.Fluids; import net.minecraft.world.level.material.Material; import oshi.util.tuples.Pair; import net.minecraft.core.Direction; @@ -17,9 +19,11 @@ import java.util.Map; import java.util.Random; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; import net.minecraft.core.BlockPos; +import net.minecraft.server.TickTask; +import net.minecraft.server.level.ServerLevel; import net.minecraft.world.entity.player.Player; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.enchantment.Enchantment; @@ -32,16 +36,6 @@ public class LightSourceSconceLavaWall extends LightSourceSconceGlowWall { @Override public BlockState updateShape(BlockState state, Direction direction, BlockState state2, LevelAccessor levelAccessor, BlockPos pos, BlockPos pos2) { if (direction.getOpposite() == state.getValue(FurnitureBlock.DIRECTION) && !state.canSurvive(levelAccessor, pos)) { - if (levelAccessor instanceof Level level) { - // Check if the level is server-side - if (!level.isClientSide) { - Player nearestPlayer = level.getNearestPlayer(pos.getX(), pos.getY(), pos.getZ(), 10, false); - if (nearestPlayer != null && nearestPlayer.isCreative()) { - levelAccessor.destroyBlock(pos, false); - return Blocks.AIR.defaultBlockState(); - } - } - } levelAccessor.destroyBlock(pos, true); return LightDrop().defaultBlockState().setValue(FurnitureBlock.WATERLOGGED, false); } @@ -95,6 +89,33 @@ public LightSourceSconceLavaWall(float hardness, float blastResistance, SoundTyp this.setRegistryName(name); } + @Override + public boolean placeLiquid(LevelAccessor world, BlockPos pos, BlockState blockState, FluidState fluidState) { + boolean success = super.placeLiquid(world, pos, blockState, fluidState); + + if (!success || blockState.getValue(BlockStateProperties.WATERLOGGED) + || fluidState.getType() != Fluids.WATER || world.isClientSide()) { + return success; + } + + world.setBlock(pos, EmptyVariant().defaultBlockState() + .setValue(FurnitureBlock.DIRECTION, blockState.getValue(BlockStateProperties.HORIZONTAL_FACING)) + .setValue(FurnitureBlock.WATERLOGGED, true), Block.UPDATE_ALL); + + world.playSound(null, pos, SoundEvents.GLASS_BREAK, SoundSource.BLOCKS, friction, explosionResistance); + world.playSound(null, pos, SoundEvents.LAVA_EXTINGUISH, SoundSource.BLOCKS, friction, explosionResistance); + + if (world instanceof ServerLevel serverLevel) { + serverLevel.getServer().tell(new TickTask(serverLevel.getServer().getTickCount() + 1, () -> { + Block.popResource(serverLevel, pos, new ItemStack(BlockObjectHolder.obsidian_chunk, 1)); + })); + } + + world.scheduleTick(pos, fluidState.getType(), fluidState.getType().getTickDelay(world)); + + return success; + } + @Override public void animateTick(BlockState state, Level level, BlockPos pos, Random rnd) { BlockPos blockpos = pos.above(); diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/lava/ObsideanLump.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/lava/ObsideanLump.java similarity index 86% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/lava/ObsideanLump.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/lava/ObsideanLump.java index 9b95c3fa56..e7fa6fb21f 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/lava/ObsideanLump.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/lava/ObsideanLump.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.lava; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.lava; -import com.mcmoddev.ironagefurniture.api.blocks.base.FurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.blocks.base.FurnitureBlock; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.LiquidBlockContainer; import net.minecraft.world.level.block.state.BlockState; @@ -17,7 +17,7 @@ public class ObsideanLump extends FurnitureBlock implements LiquidBlockContainer public ObsideanLump(float hardness, float blastResistance, SoundType sound, String name) { super(Block.Properties.of(Material.STONE).strength(hardness, blastResistance).sound(sound)); - this.registerDefaultState(this.getStateDefinition().any().setValue(DIRECTION, Direction.NORTH)); + this.registerDefaultState(this.getStateDefinition().any().setValue(DIRECTION, Direction.NORTH).setValue(WATERLOGGED, false)); this.generateShapes(this.getStateDefinition().getPossibleStates()); this.setRegistryName(name); } diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/LightSourceRed.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/LightSourceRed.java similarity index 97% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/LightSourceRed.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/LightSourceRed.java index 4acdc2bef5..151a8f5a60 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/LightSourceRed.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/LightSourceRed.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red; import java.util.ArrayList; import java.util.List; @@ -9,9 +9,9 @@ import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; -import com.mcmoddev.ironagefurniture.api.blocks.base.FallingFurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.blocks.base.FallingFurnitureBlock; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/LightSourceSconceRedFloor.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/LightSourceSconceRedFloor.java similarity index 96% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/LightSourceSconceRedFloor.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/LightSourceSconceRedFloor.java index 9ee296be94..12b8337b2c 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/LightSourceSconceRedFloor.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/LightSourceSconceRedFloor.java @@ -1,9 +1,9 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red; import com.google.common.collect.Lists; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; -import com.mcmoddev.ironagefurniture.api.blocks.base.FurnitureBlock; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.glow.LightSourceSconceGlowFloor; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.api.blocks.base.FurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.glow.LightSourceSconceGlowFloor; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/LightSourceSconceRedWall.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/LightSourceSconceRedWall.java similarity index 97% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/LightSourceSconceRedWall.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/LightSourceSconceRedWall.java index 3af97ccf66..4e0219fcb2 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/LightSourceSconceRedWall.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/LightSourceSconceRedWall.java @@ -1,11 +1,11 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; -import com.mcmoddev.ironagefurniture.api.blocks.base.FurnitureBlock; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchWall; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.api.blocks.base.FurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchWall; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.core.particles.ParticleOptions; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedEight.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedEight.java similarity index 84% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedEight.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedEight.java index aec30ed680..e341c6ffaa 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedEight.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedEight.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.red; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.red; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedEleven.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedEleven.java similarity index 84% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedEleven.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedEleven.java index fcf5905a31..d19caf5a68 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedEleven.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedEleven.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.red; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.red; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFifteen.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFifteen.java similarity index 84% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFifteen.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFifteen.java index 2c82f6eeb5..3d9668bbbe 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFifteen.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFifteen.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.red; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.red; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFive.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFive.java similarity index 84% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFive.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFive.java index 8fc9b3a2cb..a2b072fcd8 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFive.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFive.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.red; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.red; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFour.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFour.java similarity index 84% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFour.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFour.java index bdd341b483..2d3575a329 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFour.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFour.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.red; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.red; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFourteen.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFourteen.java similarity index 84% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFourteen.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFourteen.java index e4514cc866..a5e25d7365 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFourteen.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedFourteen.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.red; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.red; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedNine.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedNine.java similarity index 84% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedNine.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedNine.java index 9e610fb894..06751b2934 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedNine.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedNine.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.red; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.red; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedOne.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedOne.java similarity index 84% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedOne.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedOne.java index f218270a8b..3c739e3b42 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedOne.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedOne.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.red; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.red; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedSeven.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedSeven.java similarity index 84% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedSeven.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedSeven.java index 13edd12be7..9dab465844 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedSeven.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedSeven.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.red; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.red; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedSix.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedSix.java similarity index 84% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedSix.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedSix.java index 0d6901e0b5..da2d6a24d7 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedSix.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedSix.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.red; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.red; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedTen.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedTen.java similarity index 84% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedTen.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedTen.java index 40b5ea210d..4fe451ddd0 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedTen.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedTen.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.red; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.red; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedThirteen.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedThirteen.java similarity index 84% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedThirteen.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedThirteen.java index bdf6a1c488..16f041090a 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedThirteen.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedThirteen.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.red; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.red; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedThree.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedThree.java similarity index 84% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedThree.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedThree.java index 0196e92403..05ab45ebe5 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedThree.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedThree.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.red; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.red; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedTwelve.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedTwelve.java similarity index 84% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedTwelve.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedTwelve.java index 50c193df81..40d6513694 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedTwelve.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedTwelve.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.red; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.red; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedTwo.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedTwo.java similarity index 84% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedTwo.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedTwo.java index 54ac86ab28..46ae9d128c 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedTwo.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/red/LightSourceRedTwo.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.red; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.red; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorEight.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorEight.java similarity index 83% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorEight.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorEight.java index 5a67446177..d3d94a2b0f 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorEight.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorEight.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorEleven.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorEleven.java similarity index 83% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorEleven.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorEleven.java index cf6ff7f2fa..76230f6bc4 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorEleven.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorEleven.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFifteen.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFifteen.java similarity index 83% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFifteen.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFifteen.java index cededa08e5..d16082e43b 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFifteen.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFifteen.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFive.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFive.java similarity index 83% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFive.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFive.java index 5da7b10a49..a4b87cde58 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFive.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFive.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFour.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFour.java similarity index 83% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFour.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFour.java index 472d6d93b3..22fb6c3f6f 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFour.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFour.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFourteen.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFourteen.java similarity index 83% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFourteen.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFourteen.java index df06ef8612..2456959786 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFourteen.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorFourteen.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorNine.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorNine.java similarity index 83% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorNine.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorNine.java index 52653223c2..079aa7ace1 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorNine.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorNine.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorOne.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorOne.java similarity index 83% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorOne.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorOne.java index eb8f9210f6..0d487baff8 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorOne.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorOne.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorSeven.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorSeven.java similarity index 83% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorSeven.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorSeven.java index c83dcc4572..808bf111f2 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorSeven.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorSeven.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorSix.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorSix.java similarity index 83% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorSix.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorSix.java index fb6d37ef2a..798831a3b5 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorSix.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorSix.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorTen.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorTen.java similarity index 83% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorTen.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorTen.java index 4881138e45..13b66a71b3 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorTen.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorTen.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorThirteen.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorThirteen.java similarity index 83% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorThirteen.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorThirteen.java index b54363d66f..79f83345bd 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorThirteen.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorThirteen.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorThree.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorThree.java similarity index 83% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorThree.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorThree.java index cff794dcd2..99d817b588 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorThree.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorThree.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorTwelve.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorTwelve.java similarity index 83% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorTwelve.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorTwelve.java index 6ad16367af..6598f768a8 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorTwelve.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorTwelve.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorTwo.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorTwo.java similarity index 83% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorTwo.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorTwo.java index cb2ab2b671..72c1824a41 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorTwo.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/floor/LightSourceSconceRedFloorTwo.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.Block; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallEight.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallEight.java similarity index 82% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallEight.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallEight.java index 9c96f18ae2..85890fe4f2 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallEight.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallEight.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.SoundType; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallEleven.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallEleven.java similarity index 82% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallEleven.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallEleven.java index 4a23273e3b..872645e68f 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallEleven.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallEleven.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.SoundType; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFifteen.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFifteen.java similarity index 82% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFifteen.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFifteen.java index 6e5f40060f..54c2a8329d 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFifteen.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFifteen.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.SoundType; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFive.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFive.java similarity index 82% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFive.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFive.java index 8f26b4ca13..74506983f3 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFive.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFive.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.SoundType; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFour.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFour.java similarity index 82% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFour.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFour.java index 457f02416c..24e67128f5 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFour.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFour.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.SoundType; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFourteen.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFourteen.java similarity index 82% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFourteen.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFourteen.java index 27eaa18c56..b03a22f20d 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFourteen.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallFourteen.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.SoundType; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallNine.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallNine.java similarity index 82% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallNine.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallNine.java index bee5ac6764..c5930c3110 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallNine.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallNine.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.SoundType; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallOne.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallOne.java similarity index 82% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallOne.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallOne.java index 8442bf8e52..b31852599c 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallOne.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallOne.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.SoundType; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallSeven.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallSeven.java similarity index 82% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallSeven.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallSeven.java index 924a389a35..c77daa2509 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallSeven.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallSeven.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.SoundType; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallSix.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallSix.java similarity index 82% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallSix.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallSix.java index 886c0e21cd..c7f3ac43a8 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallSix.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallSix.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.SoundType; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallTen.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallTen.java similarity index 82% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallTen.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallTen.java index 818de0a8fa..7bf8bf291c 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallTen.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallTen.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.SoundType; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallThirteen.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallThirteen.java similarity index 82% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallThirteen.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallThirteen.java index e334d958c4..cec872a0ff 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallThirteen.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallThirteen.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.SoundType; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallThree.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallThree.java similarity index 82% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallThree.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallThree.java index fb9a7e2aa1..c3db34ee8a 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallThree.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallThree.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.SoundType; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallTwelve.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallTwelve.java similarity index 82% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallTwelve.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallTwelve.java index bac6579c03..50a7fec367 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallTwelve.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallTwelve.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.SoundType; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallTwo.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallTwo.java similarity index 82% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallTwo.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallTwo.java index d69ff96980..f4adbf3a46 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallTwo.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/red/illuminated/sconce/wall/LightSourceSconceRedWallTwo.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.level.block.SoundType; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchFloor.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchFloor.java similarity index 95% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchFloor.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchFloor.java index 43e691d1fa..3b8b124480 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchFloor.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchFloor.java @@ -1,7 +1,7 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.redtorch; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.redtorch; -import com.mcmoddev.ironagefurniture.api.blocks.base.FurnitureBlock; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.base.FurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchFloor; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Blocks; import net.minecraft.world.level.block.LiquidBlockContainer; @@ -19,7 +19,7 @@ import java.util.WeakHashMap; import com.google.common.collect.Lists; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; import net.minecraft.core.BlockPos; import net.minecraft.world.level.BlockGetter; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchFloorUnlit.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchFloorUnlit.java similarity index 92% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchFloorUnlit.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchFloorUnlit.java index c507cfc40d..f1c1560405 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchFloorUnlit.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchFloorUnlit.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.redtorch; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.redtorch; -import com.mcmoddev.ironagefurniture.api.blocks.base.FurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.blocks.base.FurnitureBlock; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; @@ -15,7 +15,7 @@ import java.util.List; import java.util.Random; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; import net.minecraft.core.BlockPos; import net.minecraft.world.level.BlockGetter; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchWall.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchWall.java similarity index 95% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchWall.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchWall.java index a4e39e469e..1e31b8535c 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchWall.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchWall.java @@ -1,7 +1,7 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.redtorch; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.redtorch; -import com.mcmoddev.ironagefurniture.api.blocks.base.FurnitureBlock; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchWall; +import zone.moddev.mc.ironagefurniture.api.blocks.base.FurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchWall; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Blocks; import net.minecraft.world.level.block.state.BlockBehaviour; @@ -20,7 +20,7 @@ import java.util.WeakHashMap; import com.google.common.collect.Lists; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; import net.minecraft.core.BlockPos; import net.minecraft.world.level.BlockGetter; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchWallUnlit.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchWallUnlit.java similarity index 92% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchWallUnlit.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchWallUnlit.java index 16634080a4..40350abe80 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchWallUnlit.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/redtorch/LightSourceSconceRedTorchWallUnlit.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.redtorch; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.redtorch; -import com.mcmoddev.ironagefurniture.api.blocks.base.FurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.blocks.base.FurnitureBlock; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; @@ -14,7 +14,7 @@ import java.util.List; import java.util.Random; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; import net.minecraft.core.BlockPos; import net.minecraft.world.level.BlockGetter; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/soultorch/LightSourceSconceSoulTorchFloor.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/soultorch/LightSourceSconceSoulTorchFloor.java similarity index 86% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/soultorch/LightSourceSconceSoulTorchFloor.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/soultorch/LightSourceSconceSoulTorchFloor.java index a1df327540..e14b080d03 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/soultorch/LightSourceSconceSoulTorchFloor.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/soultorch/LightSourceSconceSoulTorchFloor.java @@ -1,7 +1,7 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.soultorch; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.soultorch; -import com.mcmoddev.ironagefurniture.api.blocks.base.FurnitureBlock; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.base.FurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchFloor; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.core.particles.ParticleTypes; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/soultorch/LightSourceSconceSoulTorchWall.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/soultorch/LightSourceSconceSoulTorchWall.java similarity index 86% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/soultorch/LightSourceSconceSoulTorchWall.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/soultorch/LightSourceSconceSoulTorchWall.java index 4c04d4f389..88d3f922df 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/soultorch/LightSourceSconceSoulTorchWall.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/soultorch/LightSourceSconceSoulTorchWall.java @@ -1,7 +1,7 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.soultorch; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.soultorch; -import com.mcmoddev.ironagefurniture.api.blocks.base.FurnitureBlock; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchWall; +import zone.moddev.mc.ironagefurniture.api.blocks.base.FurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchWall; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.core.particles.ParticleTypes; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchFloor.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchFloor.java similarity index 97% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchFloor.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchFloor.java index da7e4f1450..e37124e995 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchFloor.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchFloor.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.torch; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.torch; -import com.mcmoddev.ironagefurniture.api.blocks.lightholder.LightHolderSconceFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightholder.LightHolderSconceFloor; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Blocks; import net.minecraft.world.level.block.LiquidBlockContainer; @@ -28,7 +28,7 @@ import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; import net.minecraft.core.BlockPos; import net.minecraft.world.phys.BlockHitResult; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchFloorUnlit.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchFloorUnlit.java similarity index 96% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchFloorUnlit.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchFloorUnlit.java index f7022835e6..054ba29d4c 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchFloorUnlit.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchFloorUnlit.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.torch; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.torch; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Blocks; @@ -14,7 +14,7 @@ import net.minecraft.world.InteractionHand; import java.util.Random; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; import net.minecraft.core.BlockPos; import net.minecraft.world.phys.BlockHitResult; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchWall.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchWall.java similarity index 93% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchWall.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchWall.java index 9339423d99..bae1fd54fe 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchWall.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchWall.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.torch; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.torch; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Blocks; @@ -16,7 +16,7 @@ import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; import net.minecraft.core.BlockPos; import net.minecraft.world.level.Level; @@ -99,7 +99,6 @@ public boolean canSurvive(BlockState state, LevelReader levelReader, BlockPos po { Direction direction = state.getValue(DIRECTION); BlockPos blockpos = pos.relative(direction.getOpposite()); - BlockState blockstate = levelReader.getBlockState(blockpos); - return blockstate.isFaceSturdy(levelReader, blockpos, direction); + return Block.canSupportCenter(levelReader, blockpos, direction); } } diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchWallUnlit.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchWallUnlit.java similarity index 96% rename from src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchWallUnlit.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchWallUnlit.java index 7b00650dbb..919d048275 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchWallUnlit.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/blocks/lightsource/torch/LightSourceSconceTorchWallUnlit.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture.api.blocks.lightsource.torch; +package zone.moddev.mc.ironagefurniture.api.blocks.lightsource.torch; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Blocks; @@ -15,7 +15,7 @@ import java.util.Random; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; import net.minecraft.core.BlockPos; import net.minecraft.world.phys.BlockHitResult; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/entity/Entities.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/entity/Entities.java similarity index 90% rename from src/main/java/com/mcmoddev/ironagefurniture/api/entity/Entities.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/entity/Entities.java index ce3fbb2fc3..30b3255a09 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/entity/Entities.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/entity/Entities.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.entity; +package zone.moddev.mc.ironagefurniture.api.entity; -import com.mcmoddev.ironagefurniture.Ironagefurniture; +import zone.moddev.mc.ironagefurniture.Ironagefurniture; import net.minecraft.world.entity.Entity; import net.minecraft.world.entity.EntityType; import net.minecraft.world.entity.MobCategory; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/entity/Seat.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/entity/Seat.java similarity index 97% rename from src/main/java/com/mcmoddev/ironagefurniture/api/entity/Seat.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/entity/Seat.java index 803b48feb9..4baa3ca492 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/entity/Seat.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/entity/Seat.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture.api.entity; +package zone.moddev.mc.ironagefurniture.api.entity; import net.minecraft.core.BlockPos; import net.minecraft.nbt.CompoundTag; diff --git a/src/main/java/zone/moddev/mc/ironagefurniture/api/entity/ThrownLavaLamp.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/entity/ThrownLavaLamp.java new file mode 100644 index 0000000000..1446b08216 --- /dev/null +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/entity/ThrownLavaLamp.java @@ -0,0 +1,112 @@ +package zone.moddev.mc.ironagefurniture.api.entity; + +import net.minecraft.core.BlockPos; +import net.minecraft.core.Direction; +import net.minecraft.core.particles.ItemParticleOption; +import net.minecraft.core.particles.ParticleTypes; +import net.minecraft.sounds.SoundEvents; +import net.minecraft.sounds.SoundSource; +import net.minecraft.world.damagesource.DamageSource; +import net.minecraft.world.entity.Entity; +import net.minecraft.world.entity.EntityType; +import net.minecraft.world.entity.LivingEntity; +import net.minecraft.world.entity.projectile.ThrowableItemProjectile; +import net.minecraft.world.item.Item; +import net.minecraft.network.protocol.Packet; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.BaseFireBlock; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.BlockHitResult; +import net.minecraft.world.phys.EntityHitResult; +import net.minecraft.world.phys.HitResult; +import net.minecraftforge.network.NetworkHooks; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.registers.entities; + +public class ThrownLavaLamp extends ThrowableItemProjectile { + private static final int ENTITY_FIRE_SECONDS = 5; + + public ThrownLavaLamp(EntityType type, Level level) { + super(type, level); + } + + public ThrownLavaLamp(Level level, LivingEntity owner) { + super(entities.THROWN_LAVA_LAMP.get(), owner, level); + } + + @Override + protected Item getDefaultItem() { + return BlockObjectHolder.light_metal_ironage_block_floor_lava_clear.asItem(); + } + + @Override + public Packet getAddEntityPacket() { + return NetworkHooks.getEntitySpawningPacket(this); + } + + @Override + public void handleEntityEvent(byte eventId) { + if (eventId != 3) { + super.handleEntityEvent(eventId); + return; + } + + ItemParticleOption itemParticle = new ItemParticleOption(ParticleTypes.ITEM, getItem()); + for (int i = 0; i < 8; i++) { + level.addParticle(itemParticle, getX(), getY(), getZ(), + (random.nextDouble() - 0.5D) * 0.08D, + (random.nextDouble() - 0.5D) * 0.08D, + (random.nextDouble() - 0.5D) * 0.08D); + } + for (int i = 0; i < 3; i++) + level.addParticle(ParticleTypes.LAVA, getX(), getY(), getZ(), 0.0D, 0.0D, 0.0D); + } + + @Override + protected void onHitEntity(EntityHitResult result) { + super.onHitEntity(result); + if (!level.isClientSide) { + Entity entity = result.getEntity(); + entity.setSecondsOnFire(ENTITY_FIRE_SECONDS); + entity.hurt(DamageSource.thrown(this, getOwner()), 0.0F); + } + } + + @Override + protected void onHitBlock(BlockHitResult result) { + super.onHitBlock(result); + if (!level.isClientSide) + placeImpactFire(result); + } + + @Override + protected void onHit(HitResult result) { + super.onHit(result); + if (!level.isClientSide) { + level.playSound(null, getX(), getY(), getZ(), SoundEvents.GLASS_BREAK, + SoundSource.BLOCKS, 1.0F, 1.0F); + level.broadcastEntityEvent(this, (byte) 3); + discard(); + } + } + + private void placeImpactFire(BlockHitResult result) { + Direction side = result.getDirection(); + BlockPos hitPos = result.getBlockPos(); + if (tryPlaceFire(hitPos.relative(side))) + return; + if (side != Direction.UP && tryPlaceFire(hitPos.above())) + return; + tryPlaceFire(hitPos); + } + + private boolean tryPlaceFire(BlockPos pos) { + BlockState existing = level.getBlockState(pos); + BlockState fire = BaseFireBlock.getState(level, pos); + if ((existing.isAir() || existing.getMaterial().isReplaceable()) && fire.canSurvive(level, pos)) { + level.setBlock(pos, fire, 3); + return true; + } + return false; + } +} diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/enumerations/BenchType.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/enumerations/BenchType.java similarity index 87% rename from src/main/java/com/mcmoddev/ironagefurniture/api/enumerations/BenchType.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/enumerations/BenchType.java index 0eeca0041a..dccabe813a 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/enumerations/BenchType.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/enumerations/BenchType.java @@ -1,11 +1,10 @@ -package com.mcmoddev.ironagefurniture.api.enumerations; +package zone.moddev.mc.ironagefurniture.api.enumerations; import net.minecraft.util.StringRepresentable; public enum BenchType implements StringRepresentable { SINGLE("single"), MIDDLE("middle"), - END("end"), LEFT("left"), RIGHT("right"); diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/enumerations/Rotation.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/enumerations/Rotation.java similarity index 51% rename from src/main/java/com/mcmoddev/ironagefurniture/api/enumerations/Rotation.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/enumerations/Rotation.java index 40c7fa950e..6033729b9b 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/enumerations/Rotation.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/enumerations/Rotation.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture.api.enumerations; +package zone.moddev.mc.ironagefurniture.api.enumerations; public enum Rotation { Ninty, OneEighty, TwoSeventy, Zero diff --git a/src/main/java/zone/moddev/mc/ironagefurniture/api/items/ThrowableLavaLampBlockItem.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/items/ThrowableLavaLampBlockItem.java new file mode 100644 index 0000000000..bef5683f8b --- /dev/null +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/items/ThrowableLavaLampBlockItem.java @@ -0,0 +1,40 @@ +package zone.moddev.mc.ironagefurniture.api.items; + +import net.minecraft.sounds.SoundEvents; +import net.minecraft.sounds.SoundSource; +import net.minecraft.stats.Stats; +import net.minecraft.world.InteractionHand; +import net.minecraft.world.InteractionResultHolder; +import net.minecraft.world.entity.player.Player; +import net.minecraft.world.item.BlockItem; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.Block; +import zone.moddev.mc.ironagefurniture.api.entity.ThrownLavaLamp; + +public class ThrowableLavaLampBlockItem extends BlockItem { + public ThrowableLavaLampBlockItem(Block block, Properties properties) { + super(block, properties); + } + + @Override + public InteractionResultHolder use(Level level, Player player, InteractionHand hand) { + ItemStack stack = player.getItemInHand(hand); + level.playSound(null, player.getX(), player.getY(), player.getZ(), SoundEvents.EGG_THROW, + SoundSource.PLAYERS, 0.5F, + 0.4F / (level.getRandom().nextFloat() * 0.4F + 0.8F)); + + if (!level.isClientSide) { + ThrownLavaLamp lavaLamp = new ThrownLavaLamp(level, player); + lavaLamp.setItem(stack); + lavaLamp.shootFromRotation(player, player.getXRot(), player.getYRot(), 0.0F, 1.5F, 1.0F); + level.addFreshEntity(lavaLamp); + } + + player.awardStat(Stats.ITEM_USED.get(this)); + if (!player.getAbilities().instabuild) + stack.shrink(1); + + return InteractionResultHolder.sidedSuccess(stack, level.isClientSide()); + } +} diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/properties/BenchTypeProperty.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/properties/BenchTypeProperty.java similarity index 90% rename from src/main/java/com/mcmoddev/ironagefurniture/api/properties/BenchTypeProperty.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/properties/BenchTypeProperty.java index 819f1336e9..b007ca35c0 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/properties/BenchTypeProperty.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/properties/BenchTypeProperty.java @@ -1,7 +1,7 @@ -package com.mcmoddev.ironagefurniture.api.properties; +package zone.moddev.mc.ironagefurniture.api.properties; import com.google.common.collect.Lists; -import com.mcmoddev.ironagefurniture.api.enumerations.BenchType; +import zone.moddev.mc.ironagefurniture.api.enumerations.BenchType; import java.util.Arrays; import java.util.Collection; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/api/util/Swivel.java b/src/main/java/zone/moddev/mc/ironagefurniture/api/util/Swivel.java similarity index 89% rename from src/main/java/com/mcmoddev/ironagefurniture/api/util/Swivel.java rename to src/main/java/zone/moddev/mc/ironagefurniture/api/util/Swivel.java index 1e5e34aa47..bf723809c1 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/api/util/Swivel.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/api/util/Swivel.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.api.util; +package zone.moddev.mc.ironagefurniture.api.util; -import com.mcmoddev.ironagefurniture.api.enumerations.Rotation; +import zone.moddev.mc.ironagefurniture.api.enumerations.Rotation; import net.minecraft.core.Direction; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/client/renderer/LightRendering.java b/src/main/java/zone/moddev/mc/ironagefurniture/client/renderer/LightRendering.java similarity index 97% rename from src/main/java/com/mcmoddev/ironagefurniture/client/renderer/LightRendering.java rename to src/main/java/zone/moddev/mc/ironagefurniture/client/renderer/LightRendering.java index 4203a7ab76..1efc5988dd 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/client/renderer/LightRendering.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/client/renderer/LightRendering.java @@ -1,7 +1,7 @@ -package com.mcmoddev.ironagefurniture.client.renderer; +package zone.moddev.mc.ironagefurniture.client.renderer; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; -import com.mcmoddev.ironagefurniture.Ironagefurniture; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.Ironagefurniture; import net.minecraft.client.renderer.ItemBlockRenderTypes; import net.minecraft.client.renderer.RenderType; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/client/renderer/SeatRenderer.java b/src/main/java/zone/moddev/mc/ironagefurniture/client/renderer/SeatRenderer.java similarity index 86% rename from src/main/java/com/mcmoddev/ironagefurniture/client/renderer/SeatRenderer.java rename to src/main/java/zone/moddev/mc/ironagefurniture/client/renderer/SeatRenderer.java index 9537e605ba..3a05e2a49f 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/client/renderer/SeatRenderer.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/client/renderer/SeatRenderer.java @@ -1,6 +1,6 @@ -package com.mcmoddev.ironagefurniture.client.renderer; +package zone.moddev.mc.ironagefurniture.client.renderer; -import com.mcmoddev.ironagefurniture.api.entity.Seat; +import zone.moddev.mc.ironagefurniture.api.entity.Seat; import com.mojang.blaze3d.vertex.PoseStack; import net.minecraft.client.renderer.MultiBufferSource; import net.minecraft.client.renderer.entity.EntityRenderer; diff --git a/src/main/java/zone/moddev/mc/ironagefurniture/client/renderer/ThrownLavaLampRenderer.java b/src/main/java/zone/moddev/mc/ironagefurniture/client/renderer/ThrownLavaLampRenderer.java new file mode 100644 index 0000000000..c2e9292215 --- /dev/null +++ b/src/main/java/zone/moddev/mc/ironagefurniture/client/renderer/ThrownLavaLampRenderer.java @@ -0,0 +1,48 @@ +package zone.moddev.mc.ironagefurniture.client.renderer; + +import com.mojang.blaze3d.vertex.PoseStack; +import com.mojang.math.Vector3f; + +import net.minecraft.client.renderer.MultiBufferSource; +import net.minecraft.client.renderer.block.model.ItemTransforms; +import net.minecraft.client.renderer.entity.EntityRenderer; +import net.minecraft.client.renderer.entity.EntityRendererProvider; +import net.minecraft.client.renderer.entity.ItemRenderer; +import net.minecraft.client.renderer.texture.OverlayTexture; +import net.minecraft.client.renderer.texture.TextureAtlas; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.item.ItemStack; +import net.minecraftforge.api.distmarker.Dist; +import net.minecraftforge.api.distmarker.OnlyIn; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.api.entity.ThrownLavaLamp; + +/** Renders the lava-lamp model even before the projectile stack synchronises. */ +@OnlyIn(Dist.CLIENT) +public final class ThrownLavaLampRenderer extends EntityRenderer { + private final ItemRenderer itemRenderer; + + public ThrownLavaLampRenderer(EntityRendererProvider.Context context) { + super(context); + this.itemRenderer = context.getItemRenderer(); + } + + @Override + public void render(ThrownLavaLamp entity, float entityYaw, float partialTicks, + PoseStack stack, MultiBufferSource buffers, int packedLight) { + stack.pushPose(); + stack.mulPose(entityRenderDispatcher.cameraOrientation()); + stack.mulPose(Vector3f.YP.rotationDegrees(180.0F)); + itemRenderer.renderStatic(new ItemStack( + BlockObjectHolder.light_metal_ironage_block_floor_lava_clear), + ItemTransforms.TransformType.GROUND, packedLight, + OverlayTexture.NO_OVERLAY, stack, buffers, 0); + stack.popPose(); + super.render(entity, entityYaw, partialTicks, stack, buffers, packedLight); + } + + @Override + public ResourceLocation getTextureLocation(ThrownLavaLamp entity) { + return TextureAtlas.LOCATION_BLOCKS; + } +} diff --git a/src/main/java/com/mcmoddev/ironagefurniture/init/BlockInitialiser.java b/src/main/java/zone/moddev/mc/ironagefurniture/init/BlockInitialiser.java similarity index 81% rename from src/main/java/com/mcmoddev/ironagefurniture/init/BlockInitialiser.java rename to src/main/java/zone/moddev/mc/ironagefurniture/init/BlockInitialiser.java index eb76be3eb3..c50b358879 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/init/BlockInitialiser.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/init/BlockInitialiser.java @@ -1,33 +1,33 @@ -package com.mcmoddev.ironagefurniture.init; - -import com.mcmoddev.ironagefurniture.IronAgeFurnitureConfiguration; -import com.mcmoddev.ironagefurniture.Ironagefurniture; -import com.mcmoddev.ironagefurniture.api.blocks.furniture.*; -import com.mcmoddev.ironagefurniture.api.blocks.lightholder.LightHolderSconceFloor; -import com.mcmoddev.ironagefurniture.api.blocks.lightholder.LightHolderSconceWall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.glow.LightSourceGlowdust; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.glow.LightSourceSconceGlowFloor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.glow.LightSourceSconceGlowWall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.lava.LightSourceLava; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.lava.LightSourceSconceLavaFloor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.lava.LightSourceSconceLavaWall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.lava.ObsideanLump; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.red.*; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor.*; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall.*; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.redtorch.LightSourceSconceRedTorchFloor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.redtorch.LightSourceSconceRedTorchFloorUnlit; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.redtorch.LightSourceSconceRedTorchWall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.redtorch.LightSourceSconceRedTorchWallUnlit; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.soultorch.LightSourceSconceSoulTorchFloor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.soultorch.LightSourceSconceSoulTorchWall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchFloor; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchFloorUnlit; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchWall; -import com.mcmoddev.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchWallUnlit; +package zone.moddev.mc.ironagefurniture.init; + +import zone.moddev.mc.ironagefurniture.IronAgeFurnitureConfiguration; +import zone.moddev.mc.ironagefurniture.Ironagefurniture; +import zone.moddev.mc.ironagefurniture.api.blocks.furniture.*; +import zone.moddev.mc.ironagefurniture.api.blocks.lightholder.LightHolderSconceFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightholder.LightHolderSconceWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.glow.LightSourceGlowdust; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.glow.LightSourceSconceGlowFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.glow.LightSourceSconceGlowWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.lava.LightSourceLava; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.lava.LightSourceSconceLavaFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.lava.LightSourceSconceLavaWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.lava.ObsideanLump; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.red.*; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.floor.*; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.illuminated.sconce.wall.*; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceRed; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.red.LightSourceSconceRedWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.redtorch.LightSourceSconceRedTorchFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.redtorch.LightSourceSconceRedTorchFloorUnlit; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.redtorch.LightSourceSconceRedTorchWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.redtorch.LightSourceSconceRedTorchWallUnlit; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.soultorch.LightSourceSconceSoulTorchFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.soultorch.LightSourceSconceSoulTorchWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchFloor; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchFloorUnlit; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchWall; +import zone.moddev.mc.ironagefurniture.api.blocks.lightsource.torch.LightSourceSconceTorchWallUnlit; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.SoundType; import net.minecraftforge.event.RegistryEvent; @@ -35,16 +35,16 @@ import net.minecraftforge.fml.ModList; import net.minecraftforge.fml.common.Mod; -import static com.mcmoddev.ironagefurniture.init.resources.bop.BOP_WOOD_TYPES; -import static com.mcmoddev.ironagefurniture.init.resources.bop.BOP_NETHER_WOOD_TYPES; -import static com.mcmoddev.ironagefurniture.init.resources.byg.BYG_WOOD_TYPES; -import static com.mcmoddev.ironagefurniture.init.resources.byg.BYG_NETHER_WOOD_TYPES; -import static com.mcmoddev.ironagefurniture.init.resources.colours.COLOURS; -import static com.mcmoddev.ironagefurniture.init.resources.immersiveengineering.IE_WOOD_TYPES; -import static com.mcmoddev.ironagefurniture.init.resources.immersiveengineering.IE_NETHER_WOOD_TYPES; -import static com.mcmoddev.ironagefurniture.init.resources.vanilla.VANILLA_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.bop.BOP_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.bop.BOP_NETHER_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.byg.BYG_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.byg.BYG_NETHER_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.colours.COLOURS; +import static zone.moddev.mc.ironagefurniture.init.resources.immersiveengineering.IE_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.immersiveengineering.IE_NETHER_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.vanilla.VANILLA_WOOD_TYPES; -import static com.mcmoddev.ironagefurniture.init.resources.vanilla.VANILLA_NETHER_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.vanilla.VANILLA_NETHER_WOOD_TYPES; /** diff --git a/src/main/java/com/mcmoddev/ironagefurniture/init/ItemInitialiser.java b/src/main/java/zone/moddev/mc/ironagefurniture/init/ItemInitialiser.java similarity index 86% rename from src/main/java/com/mcmoddev/ironagefurniture/init/ItemInitialiser.java rename to src/main/java/zone/moddev/mc/ironagefurniture/init/ItemInitialiser.java index 5ee522d71c..12b687e833 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/init/ItemInitialiser.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/init/ItemInitialiser.java @@ -1,35 +1,39 @@ -package com.mcmoddev.ironagefurniture.init; +package zone.moddev.mc.ironagefurniture.init; -import com.mcmoddev.ironagefurniture.BlockObjectHolder; -import com.mcmoddev.ironagefurniture.IronAgeFurnitureConfiguration; -import com.mcmoddev.ironagefurniture.Ironagefurniture; +import zone.moddev.mc.ironagefurniture.BlockObjectHolder; +import zone.moddev.mc.ironagefurniture.IronAgeFurnitureConfiguration; +import zone.moddev.mc.ironagefurniture.Ironagefurniture; +import zone.moddev.mc.ironagefurniture.api.items.ThrowableLavaLampBlockItem; import net.minecraft.world.item.Item; import net.minecraft.world.level.block.Block; import net.minecraft.world.item.BlockItem; +import net.minecraft.resources.ResourceLocation; import net.minecraftforge.event.RegistryEvent; import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.fml.ModList; import net.minecraftforge.fml.common.Mod; - -import static com.mcmoddev.ironagefurniture.init.resources.bop.BOP_WOOD_TYPES; -import static com.mcmoddev.ironagefurniture.init.resources.bop.BOP_NETHER_WOOD_TYPES; -import static com.mcmoddev.ironagefurniture.init.resources.byg.BYG_WOOD_TYPES; -import static com.mcmoddev.ironagefurniture.init.resources.byg.BYG_NETHER_WOOD_TYPES; -import static com.mcmoddev.ironagefurniture.init.resources.colours.COLOURS; -import static com.mcmoddev.ironagefurniture.init.resources.immersiveengineering.IE_WOOD_TYPES; -import static com.mcmoddev.ironagefurniture.init.resources.immersiveengineering.IE_NETHER_WOOD_TYPES; -import static com.mcmoddev.ironagefurniture.init.resources.vanilla.VANILLA_WOOD_TYPES; -import static com.mcmoddev.ironagefurniture.init.resources.vanilla.VANILLA_NETHER_WOOD_TYPES; +import net.minecraftforge.registries.ForgeRegistries; + +import static zone.moddev.mc.ironagefurniture.init.resources.bop.BOP_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.bop.BOP_NETHER_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.byg.BYG_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.byg.BYG_NETHER_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.colours.COLOURS; +import static zone.moddev.mc.ironagefurniture.init.resources.immersiveengineering.IE_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.immersiveengineering.IE_NETHER_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.vanilla.VANILLA_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.vanilla.VANILLA_NETHER_WOOD_TYPES; @Mod.EventBusSubscriber(modid = Ironagefurniture.MODID, bus = Mod.EventBusSubscriber.Bus.MOD) public class ItemInitialiser { - public static Block getProperty(String property) { - try { - return (Block) BlockObjectHolder.class.getDeclaredField(property).get(null); - } catch (Exception e) { - return null; + private static Block getRegisteredBlock(String path) { + ResourceLocation id = new ResourceLocation(Ironagefurniture.MODID, path); + Block block = ForgeRegistries.BLOCKS.getValue(id); + if (block == null || !id.equals(block.getRegistryName())) { + throw new IllegalStateException("Furniture block was not registered: " + id); } + return block; } private static void registerChairs(RegistryEvent.Register event, String[] woodTypes, boolean log, String[] netherWoodTypes) { @@ -44,28 +48,28 @@ private static void registerChairs(RegistryEvent.Register event, String[] private static void registerChairItems(RegistryEvent.Register event, boolean log, String wood) { if (IronAgeFurnitureConfiguration.CLIENT.GENERATE_CLASSIC_CHAIRS.get()) - registerItem(event, getProperty("chair_wood_ironage_classic_" + wood)); + registerItem(event, getRegisteredBlock("chair_wood_ironage_classic_" + wood)); if (IronAgeFurnitureConfiguration.CLIENT.GENERATE_SHIELD_CHAIRS.get()) - registerItem(event, getProperty("chair_wood_ironage_shield_" + wood)); + registerItem(event, getRegisteredBlock("chair_wood_ironage_shield_" + wood)); if (IronAgeFurnitureConfiguration.CLIENT.GENERATE_SHORT_STOOLS.get()) - registerItem(event, getProperty("chair_wood_ironage_stool_short_" + wood)); + registerItem(event, getRegisteredBlock("chair_wood_ironage_stool_short_" + wood)); if (IronAgeFurnitureConfiguration.CLIENT.GENERATE_TALL_STOOLS.get()) - registerItem(event, getProperty("chair_wood_ironage_stool_tall_" + wood)); + registerItem(event, getRegisteredBlock("chair_wood_ironage_stool_tall_" + wood)); if (IronAgeFurnitureConfiguration.CLIENT.GENERATE_BENCHES.get()) { - registerItem(event, getProperty("chair_wood_ironage_bench_single_" + wood)); - registerItem(event, getProperty("chair_wood_ironage_bench_back_single_" + wood)); + registerItem(event, getRegisteredBlock("chair_wood_ironage_bench_single_" + wood)); + registerItem(event, getRegisteredBlock("chair_wood_ironage_bench_back_single_" + wood)); for (String colour : COLOURS) { - registerItem(event, getProperty("chair_wood_ironage_bench_padded_" + colour + "_single_" + wood)); - registerItem(event, getProperty("chair_wood_ironage_bench_back_padded_" + colour + "_single_" + wood)); + registerItem(event, getRegisteredBlock("chair_wood_ironage_bench_padded_" + colour + "_single_" + wood)); + registerItem(event, getRegisteredBlock("chair_wood_ironage_bench_back_padded_" + colour + "_single_" + wood)); } if (log) - registerItem(event, getProperty("chair_wood_ironage_bench_log_single_" + wood)); + registerItem(event, getRegisteredBlock("chair_wood_ironage_bench_log_single_" + wood)); } } @@ -94,7 +98,7 @@ public static void registerItems(RegistryEvent.Register event) { new BlockItem(BlockObjectHolder.light_metal_ironage_sconce_floor_glow_iron, new BlockItem.Properties()).setRegistryName(Ironagefurniture.MODID, BlockObjectHolder.light_metal_ironage_sconce_floor_glow_iron.getRegistryName().getPath()), new BlockItem(BlockObjectHolder.light_metal_ironage_sconce_wall_glow_iron, new BlockItem.Properties()).setRegistryName(Ironagefurniture.MODID, BlockObjectHolder.light_metal_ironage_sconce_wall_glow_iron.getRegistryName().getPath()), - new BlockItem(BlockObjectHolder.light_metal_ironage_block_floor_lava_clear, new BlockItem.Properties().tab(Ironagefurniture.IAF_GROUP)).setRegistryName(Ironagefurniture.MODID, BlockObjectHolder.light_metal_ironage_block_floor_lava_clear.getRegistryName().getPath()), + new ThrowableLavaLampBlockItem(BlockObjectHolder.light_metal_ironage_block_floor_lava_clear, new BlockItem.Properties().tab(Ironagefurniture.IAF_GROUP)).setRegistryName(Ironagefurniture.MODID, BlockObjectHolder.light_metal_ironage_block_floor_lava_clear.getRegistryName().getPath()), new BlockItem(BlockObjectHolder.light_metal_ironage_sconce_floor_lava_iron, new BlockItem.Properties()).setRegistryName(Ironagefurniture.MODID, BlockObjectHolder.light_metal_ironage_sconce_floor_lava_iron.getRegistryName().getPath()), new BlockItem(BlockObjectHolder.light_metal_ironage_sconce_wall_lava_iron, new BlockItem.Properties()).setRegistryName(Ironagefurniture.MODID, BlockObjectHolder.light_metal_ironage_sconce_wall_lava_iron.getRegistryName().getPath()), diff --git a/src/main/java/com/mcmoddev/ironagefurniture/init/resources/bop.java b/src/main/java/zone/moddev/mc/ironagefurniture/init/resources/bop.java similarity index 68% rename from src/main/java/com/mcmoddev/ironagefurniture/init/resources/bop.java rename to src/main/java/zone/moddev/mc/ironagefurniture/init/resources/bop.java index c7bd39cf6b..6542078b9a 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/init/resources/bop.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/init/resources/bop.java @@ -1,9 +1,9 @@ -package com.mcmoddev.ironagefurniture.init.resources; +package zone.moddev.mc.ironagefurniture.init.resources; public class bop { public static final String[] BOP_WOOD_TYPES = new String[]{ "biomesoplenty_cherry", "biomesoplenty_fir", "biomesoplenty_hellbark", - "biomesoplenty_jacaranda", "biomesoplenty_mahogany", "biomesoplenty_palm", + "biomesoplenty_jacaranda", "biomesoplenty_magic", "biomesoplenty_mahogany", "biomesoplenty_palm", "biomesoplenty_redwood", "biomesoplenty_umbran", "biomesoplenty_willow", "biomesoplenty_dead" }; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/init/resources/byg.java b/src/main/java/zone/moddev/mc/ironagefurniture/init/resources/byg.java similarity index 66% rename from src/main/java/com/mcmoddev/ironagefurniture/init/resources/byg.java rename to src/main/java/zone/moddev/mc/ironagefurniture/init/resources/byg.java index 484a9c4abf..9aa9a721ac 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/init/resources/byg.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/init/resources/byg.java @@ -1,10 +1,10 @@ -package com.mcmoddev.ironagefurniture.init.resources; +package zone.moddev.mc.ironagefurniture.init.resources; public class byg { public static final String[] BYG_WOOD_TYPES = new String[]{ "byg_aspen", "byg_baobab", "byg_blue_enchanted", "byg_bulbis", "byg_cherry", "byg_cika", - "byg_cypress", "byg_ebony", "byg_embur", "byg_ether", "byg_fir", "byg_glacial_oak", "byg_green_enchanted", - "byg_holly", "byg_ironwood", "byg_jacaranda", "byg_lament", "byg_mahogany", "byg_mangrove", "byg_maple", "byg_nightshade", + "byg_cypress", "byg_ebony", "byg_embur", "byg_ether", "byg_fir", "byg_green_enchanted", + "byg_holly", "byg_jacaranda", "byg_lament", "byg_mahogany", "byg_mangrove", "byg_maple", "byg_nightshade", "byg_palm", "byg_pine", "byg_rainbow_eucalyptus", "byg_redwood", "byg_skyris", "byg_willow", "byg_witch_hazel", "byg_zelkova" }; diff --git a/src/main/java/com/mcmoddev/ironagefurniture/init/resources/colours.java b/src/main/java/zone/moddev/mc/ironagefurniture/init/resources/colours.java similarity index 81% rename from src/main/java/com/mcmoddev/ironagefurniture/init/resources/colours.java rename to src/main/java/zone/moddev/mc/ironagefurniture/init/resources/colours.java index 286c1acc00..0b096d24b5 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/init/resources/colours.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/init/resources/colours.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture.init.resources; +package zone.moddev.mc.ironagefurniture.init.resources; public class colours { public static final String[] COLOURS = new String[]{ diff --git a/src/main/java/com/mcmoddev/ironagefurniture/init/resources/immersiveengineering.java b/src/main/java/zone/moddev/mc/ironagefurniture/init/resources/immersiveengineering.java similarity index 79% rename from src/main/java/com/mcmoddev/ironagefurniture/init/resources/immersiveengineering.java rename to src/main/java/zone/moddev/mc/ironagefurniture/init/resources/immersiveengineering.java index f84c2c43b3..7733f216d1 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/init/resources/immersiveengineering.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/init/resources/immersiveengineering.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture.init.resources; +package zone.moddev.mc.ironagefurniture.init.resources; public class immersiveengineering { public static final String[] IE_WOOD_TYPES = new String[]{ diff --git a/src/main/java/com/mcmoddev/ironagefurniture/init/resources/vanilla.java b/src/main/java/zone/moddev/mc/ironagefurniture/init/resources/vanilla.java similarity index 83% rename from src/main/java/com/mcmoddev/ironagefurniture/init/resources/vanilla.java rename to src/main/java/zone/moddev/mc/ironagefurniture/init/resources/vanilla.java index d538176de9..096a99ec45 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/init/resources/vanilla.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/init/resources/vanilla.java @@ -1,4 +1,4 @@ -package com.mcmoddev.ironagefurniture.init.resources; +package zone.moddev.mc.ironagefurniture.init.resources; public class vanilla { public static final String[] VANILLA_WOOD_TYPES = new String[]{ diff --git a/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyItemMappings.java b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyItemMappings.java new file mode 100644 index 0000000000..8238ecfcf7 --- /dev/null +++ b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyItemMappings.java @@ -0,0 +1,35 @@ +package zone.moddev.mc.ironagefurniture.migration; + +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.item.Item; +import net.minecraftforge.event.RegistryEvent; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.registries.ForgeRegistries; +import zone.moddev.mc.ironagefurniture.Ironagefurniture; + +/** Keeps old shared padded-bench items loadable so their colour NBT can be migrated. */ +@Mod.EventBusSubscriber(modid = Ironagefurniture.MODID, bus = Mod.EventBusSubscriber.Bus.MOD) +public final class LegacyItemMappings { + private LegacyItemMappings() { + } + + @SubscribeEvent + public static void remapMissingItems(RegistryEvent.MissingMappings event) { + for (RegistryEvent.MissingMappings.Mapping mapping : event.getMappings()) { + if (!LegacyPaddedBenchIds.isLegacyNamespace(mapping.key.getNamespace())) { + continue; + } + ResourceLocation targetId = LegacyPaddedBenchIds.isLegacyPaddedPath(mapping.key.getPath()) + ? new ResourceLocation(Ironagefurniture.MODID, + LegacyPaddedBenchIds.modernPaddedPath(mapping.key, "red")) + : LegacyPaddedBenchIds.currentId(mapping.key); + Item target = ForgeRegistries.ITEMS.getValue(targetId); + if (target != null) { + mapping.remap(target); + } else { + mapping.warn(); + } + } + } +} diff --git a/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyMigrationEvents.java b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyMigrationEvents.java new file mode 100644 index 0000000000..6e8d4774c3 --- /dev/null +++ b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyMigrationEvents.java @@ -0,0 +1,119 @@ +package zone.moddev.mc.ironagefurniture.migration; + +import java.util.LinkedHashMap; +import java.util.Map; +import java.util.WeakHashMap; + +import net.minecraft.core.BlockPos; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.Container; +import net.minecraft.world.entity.item.ItemEntity; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraftforge.event.TickEvent; +import net.minecraftforge.event.entity.EntityJoinWorldEvent; +import net.minecraftforge.event.entity.player.PlayerEvent; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.registries.ForgeRegistries; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; +import zone.moddev.mc.ironagefurniture.Ironagefurniture; +import zone.moddev.mc.ironagefurniture.api.blocks.base.FurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.blocks.furniture.BackBench; + +/** Completes colour-aware conversion after a legacy chunk or item has loaded. */ +@Mod.EventBusSubscriber(modid = Ironagefurniture.MODID) +public final class LegacyMigrationEvents { + private static final Logger LOGGER = LogManager.getLogger(); + private static final Map> PENDING_BENCHES = new WeakHashMap<>(); + + private LegacyMigrationEvents() { + } + + static synchronized void queueBench(Level level, BlockPos pos, String colour) { + PENDING_BENCHES.computeIfAbsent(level, ignored -> new LinkedHashMap<>()) + .put(pos.immutable(), LegacyPaddedBenchIds.normalizeColour(colour)); + } + + @SubscribeEvent + public static void onWorldTick(TickEvent.WorldTickEvent event) { + if (event.phase != TickEvent.Phase.END || event.world.isClientSide) { + return; + } + Map pending; + synchronized (LegacyMigrationEvents.class) { + pending = PENDING_BENCHES.remove(event.world); + } + if (pending == null || pending.isEmpty()) { + return; + } + int converted = 0; + for (Map.Entry entry : pending.entrySet()) { + if (convertBench(event.world, entry.getKey(), entry.getValue())) { + ++converted; + } + } + if (converted > 0) { + LOGGER.info("Converted {} pre-flattening coloured padded benches in dimension {}", converted, + event.world.dimension().location()); + } + } + + private static boolean convertBench(Level level, BlockPos pos, String colour) { + BlockState legacyState = level.getBlockState(pos); + if (!(legacyState.getBlock() instanceof LegacyPaddedFurnitureBlock)) { + return false; + } + String oldPath = ((LegacyPaddedFurnitureBlock)legacyState.getBlock()).getLegacyPath(); + ResourceLocation targetId = new ResourceLocation(Ironagefurniture.MODID, + LegacyPaddedBenchIds.modernPaddedPath(oldPath, colour)); + Block target = ForgeRegistries.BLOCKS.getValue(targetId); + if (target == null) { + LOGGER.warn("Could not convert legacy padded bench '{}' at {} because '{}' is not registered", + oldPath, pos, targetId); + return false; + } + BlockState targetState = target.defaultBlockState(); + if (legacyState.hasProperty(FurnitureBlock.DIRECTION) && targetState.hasProperty(FurnitureBlock.DIRECTION)) { + targetState = targetState.setValue(FurnitureBlock.DIRECTION, + legacyState.getValue(FurnitureBlock.DIRECTION)); + } + if (legacyState.hasProperty(BackBench.TYPE) && targetState.hasProperty(BackBench.TYPE)) { + targetState = targetState.setValue(BackBench.TYPE, legacyState.getValue(BackBench.TYPE)); + } + if (targetState.hasProperty(FurnitureBlock.WATERLOGGED)) { + targetState = targetState.setValue(FurnitureBlock.WATERLOGGED, Boolean.FALSE); + } + return level.setBlock(pos, targetState, 3); + } + + @SubscribeEvent + public static void onPlayerLogin(PlayerEvent.PlayerLoggedInEvent event) { + migrateInventory(event.getPlayer().getInventory()); + migrateInventory(event.getPlayer().getEnderChestInventory()); + } + + private static void migrateInventory(Container inventory) { + for (int slot = 0; slot < inventory.getContainerSize(); ++slot) { + ItemStack original = inventory.getItem(slot); + ItemStack migrated = LegacyPaddedItemMigration.migrate(original); + if (migrated != original) { + inventory.setItem(slot, migrated); + } + } + } + + @SubscribeEvent + public static void onEntityJoin(EntityJoinWorldEvent event) { + if (!event.getWorld().isClientSide && event.getEntity() instanceof ItemEntity) { + ItemEntity item = (ItemEntity)event.getEntity(); + ItemStack migrated = LegacyPaddedItemMigration.migrate(item.getItem()); + if (migrated != item.getItem()) { + item.setItem(migrated); + } + } + } +} diff --git a/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedBackBench.java b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedBackBench.java new file mode 100644 index 0000000000..48dd04108d --- /dev/null +++ b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedBackBench.java @@ -0,0 +1,28 @@ +package zone.moddev.mc.ironagefurniture.migration; + +import net.minecraft.core.BlockPos; +import net.minecraft.world.level.block.EntityBlock; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.entity.BlockEntity; +import net.minecraft.world.level.block.state.BlockState; +import zone.moddev.mc.ironagefurniture.api.blocks.furniture.BackBench; + +/** Hidden compatibility state for pre-flattening padded back benches. */ +public final class LegacyPaddedBackBench extends BackBench implements EntityBlock, LegacyPaddedFurnitureBlock { + private final String legacyPath; + + public LegacyPaddedBackBench(String legacyPath) { + super(1, 10, SoundType.WOOD, legacyPath); + this.legacyPath = legacyPath; + } + + @Override + public BlockEntity newBlockEntity(BlockPos pos, BlockState state) { + return new LegacyPaddedBenchBlockEntity(pos, state); + } + + @Override + public String getLegacyPath() { + return legacyPath; + } +} diff --git a/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedBench.java b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedBench.java new file mode 100644 index 0000000000..eeda784cbf --- /dev/null +++ b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedBench.java @@ -0,0 +1,28 @@ +package zone.moddev.mc.ironagefurniture.migration; + +import net.minecraft.core.BlockPos; +import net.minecraft.world.level.block.EntityBlock; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.entity.BlockEntity; +import net.minecraft.world.level.block.state.BlockState; +import zone.moddev.mc.ironagefurniture.api.blocks.furniture.Bench; + +/** Hidden compatibility state for pre-flattening padded benches. */ +public final class LegacyPaddedBench extends Bench implements EntityBlock, LegacyPaddedFurnitureBlock { + private final String legacyPath; + + public LegacyPaddedBench(String legacyPath) { + super(1, 10, SoundType.WOOD, legacyPath); + this.legacyPath = legacyPath; + } + + @Override + public BlockEntity newBlockEntity(BlockPos pos, BlockState state) { + return new LegacyPaddedBenchBlockEntity(pos, state); + } + + @Override + public String getLegacyPath() { + return legacyPath; + } +} diff --git a/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedBenchBlockEntity.java b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedBenchBlockEntity.java new file mode 100644 index 0000000000..749d30d844 --- /dev/null +++ b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedBenchBlockEntity.java @@ -0,0 +1,35 @@ +package zone.moddev.mc.ironagefurniture.migration; + +import net.minecraft.core.BlockPos; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.world.level.block.entity.BlockEntity; +import net.minecraft.world.level.block.state.BlockState; + +/** Reads the stable colour field used by the 1.10 and 1.12 padded-bench formats. */ +public final class LegacyPaddedBenchBlockEntity extends BlockEntity { + private String colour = "red"; + + public LegacyPaddedBenchBlockEntity(BlockPos pos, BlockState state) { + super(LegacyPaddedMigrationRegistry.padded_bench_colour, pos, state); + } + + @Override + public void load(CompoundTag compound) { + super.load(compound); + colour = LegacyPaddedBenchIds.normalizeColour(compound.getString(LegacyPaddedBenchIds.COLOR_TAG)); + } + + @Override + protected void saveAdditional(CompoundTag compound) { + super.saveAdditional(compound); + compound.putString(LegacyPaddedBenchIds.COLOR_TAG, colour); + } + + @Override + public void onLoad() { + super.onLoad(); + if (level != null && !level.isClientSide) { + LegacyMigrationEvents.queueBench(level, worldPosition, colour); + } + } +} diff --git a/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedBenchIds.java b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedBenchIds.java new file mode 100644 index 0000000000..426d3de82e --- /dev/null +++ b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedBenchIds.java @@ -0,0 +1,135 @@ +package zone.moddev.mc.ironagefurniture.migration; + +import java.util.Arrays; +import java.util.Collections; +import java.util.HashSet; +import java.util.Locale; +import java.util.LinkedHashMap; +import java.util.Map; +import java.util.Set; + +import net.minecraft.resources.ResourceLocation; +import zone.moddev.mc.ironagefurniture.Ironagefurniture; + +/** Stable names shared by the pre-flattening padded-bench migration. */ +public final class LegacyPaddedBenchIds { + public static final String COLOR_TAG = "Color"; + public static final String BYG_ADDON_MODID = "iafbygaddon"; + public static final ResourceLocation BLOCK_ENTITY_ID = + new ResourceLocation(Ironagefurniture.MODID, "padded_bench_colour"); + + private static final String BENCH_PREFIX = "chair_wood_ironage_bench_padded_single_"; + private static final String BACK_BENCH_PREFIX = "chair_wood_ironage_bench_back_padded_single_"; + private static final Set COLOURS = Collections.unmodifiableSet(new HashSet<>(Arrays.asList( + "red", "orange", "magenta", "light_blue", "yellow", "lime", "pink", "gray", + "light_gray", "cyan", "purple", "blue", "brown", "green", "white", "black"))); + private static final Map RETIRED_BYG_WOODS = new LinkedHashMap<>(); + + static { + RETIRED_BYG_WOODS.put("frozen_oak", "byg_aspen"); + RETIRED_BYG_WOODS.put("great_oak", "oak"); + RETIRED_BYG_WOODS.put("hawthorn", "byg_cherry"); + RETIRED_BYG_WOODS.put("ironwood", "byg_ebony"); + RETIRED_BYG_WOODS.put("palm", "byg_baobab"); + RETIRED_BYG_WOODS.put("rowan", "byg_maple"); + } + + private LegacyPaddedBenchIds() { + } + + public static boolean isLegacyPaddedPath(String path) { + return path.startsWith(BENCH_PREFIX) || path.startsWith(BACK_BENCH_PREFIX); + } + + public static boolean isModernRedPaddedPath(String path) { + return path.startsWith("chair_wood_ironage_bench_padded_red_single_") + || path.startsWith("chair_wood_ironage_bench_back_padded_red_single_"); + } + + public static String normalizeColour(String colour) { + if (colour == null) { + return "red"; + } + String normalized = colour.toLowerCase(Locale.ROOT); + return COLOURS.contains(normalized) ? normalized : "red"; + } + + public static String modernPaddedPath(String legacyPath, String colour) { + String normalized = normalizeColour(colour); + String path; + if (legacyPath.startsWith(BACK_BENCH_PREFIX)) { + path = "chair_wood_ironage_bench_back_padded_" + normalized + "_single_" + + legacyPath.substring(BACK_BENCH_PREFIX.length()); + } else if (legacyPath.startsWith(BENCH_PREFIX)) { + path = "chair_wood_ironage_bench_padded_" + normalized + "_single_" + + legacyPath.substring(BENCH_PREFIX.length()); + } else { + throw new IllegalArgumentException("Not a legacy padded-bench path: " + legacyPath); + } + return renameFlattenedWood(path); + } + + public static String modernPaddedPath(ResourceLocation oldId, String colour) { + return modernPaddedPath(currentId(oldId).getPath(), colour); + } + + public static String colouredPathFromModernRed(String modernRedPath, String colour) { + String normalized = normalizeColour(colour); + if (modernRedPath.startsWith("chair_wood_ironage_bench_back_padded_red_single_")) { + return modernRedPath.replaceFirst("_padded_red_single_", "_padded_" + normalized + "_single_"); + } + if (modernRedPath.startsWith("chair_wood_ironage_bench_padded_red_single_")) { + return modernRedPath.replaceFirst("_padded_red_single_", "_padded_" + normalized + "_single_"); + } + throw new IllegalArgumentException("Not a modern red padded-bench path: " + modernRedPath); + } + + public static String legacyPaddedPath(boolean backBench, String modernWood) { + String legacyWood = "dark_oak".equals(modernWood) ? "big_oak" : modernWood; + return (backBench ? BACK_BENCH_PREFIX : BENCH_PREFIX) + legacyWood; + } + + public static ResourceLocation currentId(ResourceLocation oldId) { + if (BYG_ADDON_MODID.equals(oldId.getNamespace())) { + return new ResourceLocation(Ironagefurniture.MODID, renameBygAddonWood(oldId.getPath())); + } + if (!Ironagefurniture.MODID.equals(oldId.getNamespace())) { + return oldId; + } + if (isLegacyPaddedPath(oldId.getPath())) { + return oldId; + } + return new ResourceLocation(oldId.getNamespace(), renameFlattenedWood(oldId.getPath())); + } + + public static boolean isLegacyNamespace(String namespace) { + return Ironagefurniture.MODID.equals(namespace) || BYG_ADDON_MODID.equals(namespace); + } + + public static String retiredBygFallback(String path) { + for (Map.Entry fallback : RETIRED_BYG_WOODS.entrySet()) { + if (path.endsWith("_byg_" + fallback.getKey())) { + return fallback.getKey() + " -> " + fallback.getValue(); + } + } + return null; + } + + private static String renameBygAddonWood(String path) { + for (Map.Entry fallback : RETIRED_BYG_WOODS.entrySet()) { + String suffix = "_byg_" + fallback.getKey(); + if (path.endsWith(suffix)) { + String target = fallback.getValue(); + String targetSuffix = "oak".equals(target) ? "_oak" : "_" + target; + return path.substring(0, path.length() - suffix.length()) + targetSuffix; + } + } + return path; + } + + private static String renameFlattenedWood(String path) { + return path.endsWith("_big_oak") + ? path.substring(0, path.length() - "_big_oak".length()) + "_dark_oak" + : path; + } +} diff --git a/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedFurnitureBlock.java b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedFurnitureBlock.java new file mode 100644 index 0000000000..8778c20895 --- /dev/null +++ b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedFurnitureBlock.java @@ -0,0 +1,6 @@ +package zone.moddev.mc.ironagefurniture.migration; + +/** Marker for hidden blocks used only while a pre-flattening padded bench is converted. */ +public interface LegacyPaddedFurnitureBlock { + String getLegacyPath(); +} diff --git a/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedItemMigration.java b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedItemMigration.java new file mode 100644 index 0000000000..241c80f5ca --- /dev/null +++ b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedItemMigration.java @@ -0,0 +1,108 @@ +package zone.moddev.mc.ironagefurniture.migration; + +import java.util.ArrayList; + +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.ListTag; +import net.minecraft.nbt.Tag; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.item.Item; +import net.minecraft.world.item.ItemStack; +import net.minecraftforge.registries.ForgeRegistries; +import zone.moddev.mc.ironagefurniture.Ironagefurniture; + +/** Converts the shared 1.10/1.12 padded item format to flattened colour-specific items. */ +public final class LegacyPaddedItemMigration { + private LegacyPaddedItemMigration() { + } + + public static ItemStack migrate(ItemStack original) { + if (original.isEmpty()) { + return original; + } + CompoundTag serialized = original.save(new CompoundTag()); + return migrateItemCompound(serialized) ? ItemStack.of(serialized) : original; + } + + /** Migrates serialized item stacks before vanilla flattens a legacy chunk. */ + static boolean migrateChunkContents(CompoundTag level) { + return migrateNested(level); + } + + static boolean migrateItemCompound(CompoundTag stack) { + boolean changed = false; + if (stack.contains("id", Tag.TAG_STRING)) { + ResourceLocation id = new ResourceLocation(stack.getString("id")); + if (LegacyPaddedBenchIds.isLegacyNamespace(id.getNamespace())) { + CompoundTag tag = stack.contains("tag", Tag.TAG_COMPOUND) ? stack.getCompound("tag") : null; + String colour = tag != null && tag.contains(LegacyPaddedBenchIds.COLOR_TAG, Tag.TAG_STRING) + ? tag.getString(LegacyPaddedBenchIds.COLOR_TAG) : "red"; + String targetPath = null; + if (LegacyPaddedBenchIds.isLegacyPaddedPath(id.getPath())) { + targetPath = LegacyPaddedBenchIds.modernPaddedPath(id, colour); + } else if (LegacyPaddedBenchIds.isModernRedPaddedPath(id.getPath()) + && tag != null && tag.contains(LegacyPaddedBenchIds.COLOR_TAG, Tag.TAG_STRING)) { + targetPath = LegacyPaddedBenchIds.colouredPathFromModernRed(id.getPath(), colour); + } + ResourceLocation targetId = targetPath != null + ? new ResourceLocation(Ironagefurniture.MODID, targetPath) + : LegacyPaddedBenchIds.currentId(id); + if (!targetId.equals(id)) { + Item target = ForgeRegistries.ITEMS.getValue(targetId); + if (target != null) { + stack.putString("id", targetId.toString()); + if (tag != null) { + tag.remove(LegacyPaddedBenchIds.COLOR_TAG); + } + changed = true; + } + } + } + } + + for (String key : new ArrayList<>(stack.getAllKeys())) { + Tag child = stack.get(key); + if (child instanceof CompoundTag) { + CompoundTag compound = (CompoundTag)child; + if (compound.contains("id", Tag.TAG_STRING) && compound.contains("Count", Tag.TAG_BYTE)) { + changed |= migrateItemCompound(compound); + } else { + changed |= migrateNested(compound); + } + } else if (child instanceof ListTag) { + changed |= migrateList((ListTag)child); + } + } + return changed; + } + + private static boolean migrateNested(CompoundTag compound) { + boolean changed = false; + for (String key : new ArrayList<>(compound.getAllKeys())) { + Tag child = compound.get(key); + if (child instanceof CompoundTag) { + CompoundTag nested = (CompoundTag)child; + changed |= nested.contains("id", Tag.TAG_STRING) && nested.contains("Count", Tag.TAG_BYTE) + ? migrateItemCompound(nested) : migrateNested(nested); + } else if (child instanceof ListTag) { + changed |= migrateList((ListTag)child); + } + } + return changed; + } + + private static boolean migrateList(ListTag list) { + boolean changed = false; + for (int index = 0; index < list.size(); ++index) { + Tag child = list.get(index); + if (child instanceof CompoundTag) { + CompoundTag compound = (CompoundTag)child; + changed |= compound.contains("id", Tag.TAG_STRING) && compound.contains("Count", Tag.TAG_BYTE) + ? migrateItemCompound(compound) : migrateNested(compound); + } else if (child instanceof ListTag) { + changed |= migrateList((ListTag)child); + } + } + return changed; + } +} diff --git a/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedMigrationRegistry.java b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedMigrationRegistry.java new file mode 100644 index 0000000000..090942b86f --- /dev/null +++ b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedMigrationRegistry.java @@ -0,0 +1,79 @@ +package zone.moddev.mc.ironagefurniture.migration; + +import java.util.ArrayList; +import java.util.List; + +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.entity.BlockEntityType; +import net.minecraftforge.event.RegistryEvent; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.fml.ModList; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.registries.ObjectHolder; +import zone.moddev.mc.ironagefurniture.IronAgeFurnitureConfiguration; +import zone.moddev.mc.ironagefurniture.Ironagefurniture; + +import static zone.moddev.mc.ironagefurniture.init.resources.bop.BOP_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.bop.BOP_NETHER_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.byg.BYG_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.byg.BYG_NETHER_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.immersiveengineering.IE_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.immersiveengineering.IE_NETHER_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.vanilla.VANILLA_NETHER_WOOD_TYPES; +import static zone.moddev.mc.ironagefurniture.init.resources.vanilla.VANILLA_WOOD_TYPES; + +/** Registers itemless compatibility states for the shared 1.10/1.12 padded IDs. */ +@Mod.EventBusSubscriber(modid = Ironagefurniture.MODID, bus = Mod.EventBusSubscriber.Bus.MOD) +@ObjectHolder(Ironagefurniture.MODID) +public final class LegacyPaddedMigrationRegistry { + public static final BlockEntityType padded_bench_colour = null; + private static final List COMPATIBILITY_BLOCKS = new ArrayList<>(); + + private LegacyPaddedMigrationRegistry() { + } + + @SubscribeEvent + public static void registerBlocks(RegistryEvent.Register event) { + if (!IronAgeFurnitureConfiguration.CLIENT.GENERATE_BENCHES.get()) { + return; + } + registerWoods(event, VANILLA_WOOD_TYPES); + registerWoods(event, VANILLA_NETHER_WOOD_TYPES); + if (IronAgeFurnitureConfiguration.CLIENT.INTEGRATION_BIOMESOPLENTY.get() + && ModList.get().isLoaded("biomesoplenty")) { + registerWoods(event, BOP_WOOD_TYPES); + registerWoods(event, BOP_NETHER_WOOD_TYPES); + } + if (IronAgeFurnitureConfiguration.CLIENT.INTEGRATION_BIOMESYOUGO.get() + && ModList.get().isLoaded("byg")) { + registerWoods(event, BYG_WOOD_TYPES); + registerWoods(event, BYG_NETHER_WOOD_TYPES); + } + if (IronAgeFurnitureConfiguration.CLIENT.INTEGRATION_IMMERSIVEENGINEERING.get() + && ModList.get().isLoaded("immersiveengineering")) { + registerWoods(event, IE_WOOD_TYPES); + registerWoods(event, IE_NETHER_WOOD_TYPES); + } + } + + private static void registerWoods(RegistryEvent.Register event, String[] woods) { + for (String wood : woods) { + Block bench = new LegacyPaddedBench(LegacyPaddedBenchIds.legacyPaddedPath(false, wood)); + Block backBench = new LegacyPaddedBackBench(LegacyPaddedBenchIds.legacyPaddedPath(true, wood)); + event.getRegistry().register(bench); + event.getRegistry().register(backBench); + COMPATIBILITY_BLOCKS.add(bench); + COMPATIBILITY_BLOCKS.add(backBench); + } + } + + @SubscribeEvent + public static void registerBlockEntities(RegistryEvent.Register> event) { + BlockEntityType type = BlockEntityType.Builder + .of(LegacyPaddedBenchBlockEntity::new, + COMPATIBILITY_BLOCKS.toArray(new Block[COMPATIBILITY_BLOCKS.size()])) + .build(null); + type.setRegistryName(LegacyPaddedBenchIds.BLOCK_ENTITY_ID); + event.getRegistry().register(type); + } +} diff --git a/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyWorldDataHook.java b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyWorldDataHook.java new file mode 100644 index 0000000000..1056254b4e --- /dev/null +++ b/src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyWorldDataHook.java @@ -0,0 +1,451 @@ +package zone.moddev.mc.ironagefurniture.migration; + +import java.io.File; +import java.io.IOException; +import java.lang.reflect.Field; +import java.nio.file.AtomicMoveNotSupportedException; +import java.nio.file.Files; +import java.nio.file.StandardCopyOption; +import java.util.Arrays; +import java.util.BitSet; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Map; +import java.util.Set; + +import com.mojang.serialization.Dynamic; + +import net.minecraft.core.Direction; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.ListTag; +import net.minecraft.nbt.NbtIo; +import net.minecraft.nbt.NbtUtils; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.util.datafix.fixes.BlockStateData; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.storage.LevelResource; +import net.minecraftforge.event.server.ServerAboutToStartEvent; +import net.minecraftforge.registries.ForgeRegistries; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + +import zone.moddev.mc.ironagefurniture.api.blocks.base.FurnitureBlock; +import zone.moddev.mc.ironagefurniture.api.blocks.furniture.BackBench; +import zone.moddev.mc.ironagefurniture.api.enumerations.BenchType; + +/** Converts pre-flattening Iron Age Furniture block IDs before vanilla chunk datafixing. */ +public final class LegacyWorldDataHook { + private static final Logger LOGGER = LogManager.getLogger(); + private static final BitSet LEGACY_IAF_BLOCK_IDS = new BitSet(); + private static final BitSet LEGACY_PADDED_BLOCK_IDS = new BitSet(); + private static final Map LEGACY_VANILLA_BLOCK_ENTITY_IDS = new HashMap<>(); + private static final String PRESERVE_CHUNK_MARKER = "IronAgeFurnitureLegacyPreserveChunk"; + private static final String PADDED_BLOCK_ENTITY_MARKER = "IronAgeFurnitureLegacyPaddedBench"; + private static final String SIDECAR_NAME = "ironagefurniture_legacy_registry.dat"; + private static volatile boolean legacyWorldActive; + + static { + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("Airportal", "end_portal"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("Banner", "banner"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("Beacon", "beacon"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("Cauldron", "brewing_stand"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("Chest", "chest"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("Comparator", "comparator"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("Control", "command_block"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("DLDetector", "daylight_detector"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("Dropper", "dropper"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("EnchantTable", "enchanting_table"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("EndGateway", "end_gateway"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("EnderChest", "ender_chest"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("FlowerPot", "flower_pot"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("Furnace", "furnace"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("Hopper", "hopper"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("MobSpawner", "mob_spawner"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("Music", "noteblock"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("Piston", "piston"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("RecordPlayer", "jukebox"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("Sign", "sign"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("Skull", "skull"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("Structure", "structure_block"); + LEGACY_VANILLA_BLOCK_ENTITY_IDS.put("Trap", "dispenser"); + } + + private LegacyWorldDataHook() { + } + + public static void onServerAboutToStart(ServerAboutToStartEvent event) { + if (legacyWorldActive) { + return; + } + File levelDat = event.getServer().getWorldPath(LevelResource.LEVEL_DATA_FILE).toFile(); + prepareLegacyWorld(levelDat); + } + + /** + * Captures the Forge 1.10/1.12 registry snapshot while Minecraft is still + * reading the original level data. Later lifecycle events see Forge's rewritten + * snapshot and can no longer recover the old numeric block IDs. + */ + public static synchronized void captureLegacyWorld(File levelDat, CompoundTag root) { + if (levelDat == null || root == null || !root.contains("FML", 10)) { + return; + } + CompoundTag forgeData = root.getCompound("FML"); + if (!forgeData.contains("Registries", 10)) { + return; + } + CompoundTag registries = forgeData.getCompound("Registries"); + if (!registries.contains("minecraft:blocks", 10)) { + return; + } + File worldDirectory = levelDat.getParentFile(); + CompoundTag blocks = registries.getCompound("minecraft:blocks"); + install(worldDirectory, blocks); + writeSidecar(worldDirectory, blocks); + } + + private static synchronized void prepareLegacyWorld(File levelDat) { + legacyWorldActive = false; + if (!levelDat.isFile()) { + return; + } + + try { + CompoundTag root = NbtIo.readCompressed(levelDat); + if (root.contains("FML", 10)) { + CompoundTag registries = root.getCompound("FML").getCompound("Registries"); + if (registries.contains("minecraft:blocks", 10)) { + CompoundTag blocks = registries.getCompound("minecraft:blocks"); + install(levelDat.getParentFile(), blocks); + writeSidecar(levelDat.getParentFile(), blocks); + return; + } + } + } catch (IOException e) { + LOGGER.warn("Could not inspect '{}' for legacy Iron Age Furniture registry data", levelDat, e); + return; + } + + File sidecar = sidecar(levelDat.getParentFile()); + if (sidecar.isFile()) { + try { + install(levelDat.getParentFile(), NbtIo.readCompressed(sidecar).getCompound("Blocks")); + } catch (IOException e) { + LOGGER.warn("Could not read legacy Iron Age Furniture registry sidecar '{}'", sidecar, e); + } + } + } + + private static void install(File worldDirectory, CompoundTag blockSnapshot) { + int mappedStates = installLegacyBlockStates(blockSnapshot); + legacyWorldActive = mappedStates > 0; + if (legacyWorldActive) { + LOGGER.info("Prepared {} legacy Iron Age Furniture block states from '{}'", mappedStates, + worldDirectory); + } + } + + private static void writeSidecar(File worldDirectory, CompoundTag blockSnapshot) { + File sidecar = sidecar(worldDirectory); + if (sidecar.isFile()) { + return; + } + File parent = sidecar.getParentFile(); + File temporary = new File(parent, SIDECAR_NAME + ".tmp"); + try { + Files.createDirectories(parent.toPath()); + CompoundTag root = new CompoundTag(); + root.put("Blocks", blockSnapshot.copy()); + NbtIo.writeCompressed(root, temporary); + try { + Files.move(temporary.toPath(), sidecar.toPath(), StandardCopyOption.ATOMIC_MOVE); + } catch (AtomicMoveNotSupportedException e) { + Files.move(temporary.toPath(), sidecar.toPath(), StandardCopyOption.REPLACE_EXISTING); + } + } catch (IOException e) { + LOGGER.warn("Could not preserve legacy Iron Age Furniture registry data in '{}'", sidecar, e); + } + } + + private static File sidecar(File worldDirectory) { + return new File(new File(worldDirectory, "data"), SIDECAR_NAME); + } + + /** Called by the chunk-loader coremod immediately before vanilla datafixing. */ + public static void prepareLegacyChunk(CompoundTag root) { + if (!legacyWorldActive || root == null || !root.contains("Level", 10)) { + return; + } + + CompoundTag level = root.getCompound("Level"); + LegacyPaddedItemMigration.migrateChunkContents(level); + if (!containsLegacyIafBlock(level)) { + return; + } + ensurePaddedBenchBlockEntities(level, root.getInt("DataVersion") < 704); + level.putBoolean("TerrainPopulated", true); + level.putBoolean("LightPopulated", true); + level.putBoolean(PRESERVE_CHUNK_MARKER, true); + } + + /** Called by the chunk-loader coremod after vanilla datafixing. */ + public static CompoundTag finalizeLegacyChunk(CompoundTag root) { + if (root == null) { + return root; + } + if (!root.contains("Level", 10)) { + // Minecraft 1.18 removes the Level wrapper during chunk datafixing and + // renames TileEntities to block_entities. The per-entry marker survives. + restorePaddedBenchBlockEntityIds(root, "block_entities"); + return root; + } + CompoundTag level = root.getCompound("Level"); + if (legacyWorldActive) { + normalizeLegacyVanillaBlockEntityIds(level); + } + if (level.getBoolean(PRESERVE_CHUNK_MARKER)) { + restorePaddedBenchBlockEntityIds(level, "TileEntities"); + level.putString("Status", "full"); + level.remove(PRESERVE_CHUNK_MARKER); + } + return root; + } + + static int normalizeLegacyVanillaBlockEntityIds(CompoundTag level) { + int changed = 0; + ListTag blockEntities = level.getList("TileEntities", 10); + for (int index = 0; index < blockEntities.size(); ++index) { + CompoundTag blockEntity = blockEntities.getCompound(index); + String id = blockEntity.getString("id"); + String legacyPath = id.startsWith("minecraft:") ? id.substring("minecraft:".length()) : id; + String modernPath = LEGACY_VANILLA_BLOCK_ENTITY_IDS.get(legacyPath); + if (modernPath != null) { + blockEntity.putString("id", "minecraft:" + modernPath); + ++changed; + } + } + return changed; + } + + private static int installLegacyBlockStates(CompoundTag blockSnapshot) { + LEGACY_IAF_BLOCK_IDS.clear(); + LEGACY_PADDED_BLOCK_IDS.clear(); + Map iafIds = new HashMap<>(); + Map fallbackCounts = new HashMap<>(); + ListTag savedIds = blockSnapshot.getList("ids", 10); + int highestStateId = 0; + for (int index = 0; index < savedIds.size(); ++index) { + CompoundTag savedId = savedIds.getCompound(index); + ResourceLocation id = new ResourceLocation(savedId.getString("K")); + if (!LegacyPaddedBenchIds.isLegacyNamespace(id.getNamespace())) { + continue; + } + int numericId = savedId.getInt("V"); + iafIds.put(id, numericId); + String fallback = LegacyPaddedBenchIds.retiredBygFallback(id.getPath()); + if (fallback != null) { + fallbackCounts.put(fallback, fallbackCounts.getOrDefault(fallback, 0) + 1); + } + highestStateId = Math.max(highestStateId, (numericId << 4) | 15); + } + Dynamic[] legacyStates = expandFlatteningTable(highestStateId + 1); + int mapped = 0; + for (Map.Entry entry : iafIds.entrySet()) { + ResourceLocation oldId = entry.getKey(); + Block block = resolveCurrentBlock(oldId); + if (block == null) { + LOGGER.warn("Legacy Iron Age Furniture block '{}' has no supported 1.18 replacement", oldId); + continue; + } + LEGACY_IAF_BLOCK_IDS.set(entry.getValue()); + if (LegacyPaddedBenchIds.isLegacyPaddedPath(oldId.getPath())) { + LEGACY_PADDED_BLOCK_IDS.set(entry.getValue()); + } + for (int meta = 0; meta < 16; ++meta) { + String stateNbt = NbtUtils.writeBlockState(legacyState(block, meta)).toString(); + int stateId = (entry.getValue() << 4) | meta; + legacyStates[stateId] = BlockStateData.parse(stateNbt); + ++mapped; + } + } + if (!fallbackCounts.isEmpty()) { + LOGGER.info("Legacy Oh The Biomes furniture uses these visual fallbacks: {}", fallbackCounts); + } + return mapped; + } + + private static Block resolveCurrentBlock(ResourceLocation oldId) { + ResourceLocation target = LegacyPaddedBenchIds.currentId(oldId); + return ForgeRegistries.BLOCKS.containsKey(target) ? ForgeRegistries.BLOCKS.getValue(target) : null; + } + + static BlockState legacyState(Block block, int meta) { + BlockState state = block.defaultBlockState(); + if (state.hasProperty(FurnitureBlock.DIRECTION)) { + state = state.setValue(FurnitureBlock.DIRECTION, direction(meta)); + } + if (state.hasProperty(FurnitureBlock.WATERLOGGED)) { + state = state.setValue(FurnitureBlock.WATERLOGGED, Boolean.FALSE); + } + if (block instanceof BackBench && state.hasProperty(BackBench.TYPE)) { + state = state.setValue(BackBench.TYPE, benchType(meta)); + } + return state; + } + + static Direction direction(int meta) { + return Direction.from2DDataValue(meta & 3); + } + + static BenchType benchType(int meta) { + switch ((meta & 15) >> 2) { + case 1: return BenchType.MIDDLE; + case 2: return BenchType.LEFT; + case 3: return BenchType.RIGHT; + default: return BenchType.SINGLE; + } + } + + private static boolean containsLegacyIafBlock(CompoundTag level) { + ListTag sections = level.getList("Sections", 10); + for (int sectionIndex = 0; sectionIndex < sections.size(); ++sectionIndex) { + CompoundTag section = sections.getCompound(sectionIndex); + byte[] blocks = section.getByteArray("Blocks"); + if (blocks.length != 4096) { + continue; + } + byte[] add = section.getByteArray("Add"); + for (int blockIndex = 0; blockIndex < blocks.length; ++blockIndex) { + if (LEGACY_IAF_BLOCK_IDS.get(blockId(blocks, add, blockIndex))) { + return true; + } + } + } + return false; + } + + private static void ensurePaddedBenchBlockEntities(CompoundTag level, boolean legacyBlockEntityIds) { + ListTag blockEntities = level.getList("TileEntities", 10); + Set occupied = new HashSet<>(); + for (int index = 0; index < blockEntities.size(); ++index) { + CompoundTag blockEntity = blockEntities.getCompound(index); + occupied.add(positionKey(blockEntity.getInt("x"), blockEntity.getInt("y"), blockEntity.getInt("z"))); + int blockId = getLegacyBlockId(level, blockEntity.getInt("x"), blockEntity.getInt("y"), + blockEntity.getInt("z")); + if (LEGACY_PADDED_BLOCK_IDS.get(blockId)) { + markPaddedBenchBlockEntity(blockEntity, legacyBlockEntityIds); + } + } + + int chunkX = level.getInt("xPos"); + int chunkZ = level.getInt("zPos"); + ListTag sections = level.getList("Sections", 10); + for (int sectionIndex = 0; sectionIndex < sections.size(); ++sectionIndex) { + CompoundTag section = sections.getCompound(sectionIndex); + byte[] blocks = section.getByteArray("Blocks"); + if (blocks.length != 4096) { + continue; + } + byte[] add = section.getByteArray("Add"); + int sectionY = section.getByte("Y") & 0xFF; + for (int blockIndex = 0; blockIndex < blocks.length; ++blockIndex) { + if (!LEGACY_PADDED_BLOCK_IDS.get(blockId(blocks, add, blockIndex))) { + continue; + } + int x = (chunkX << 4) + (blockIndex & 15); + int y = (sectionY << 4) + ((blockIndex >> 8) & 15); + int z = (chunkZ << 4) + ((blockIndex >> 4) & 15); + if (!occupied.add(positionKey(x, y, z))) { + continue; + } + CompoundTag blockEntity = new CompoundTag(); + markPaddedBenchBlockEntity(blockEntity, legacyBlockEntityIds); + blockEntity.putInt("x", x); + blockEntity.putInt("y", y); + blockEntity.putInt("z", z); + blockEntity.putString(LegacyPaddedBenchIds.COLOR_TAG, "red"); + blockEntities.add(blockEntity); + } + } + level.put("TileEntities", blockEntities); + } + + private static void markPaddedBenchBlockEntity(CompoundTag blockEntity, boolean legacyBlockEntityIds) { + blockEntity.putString("id", legacyBlockEntityIds ? "Sign" : "minecraft:sign"); + blockEntity.putBoolean(PADDED_BLOCK_ENTITY_MARKER, true); + } + + private static void restorePaddedBenchBlockEntityIds(CompoundTag chunk, String listName) { + ListTag blockEntities = chunk.getList(listName, 10); + for (int index = 0; index < blockEntities.size(); ++index) { + CompoundTag blockEntity = blockEntities.getCompound(index); + if (!blockEntity.getBoolean(PADDED_BLOCK_ENTITY_MARKER)) { + continue; + } + blockEntity.putString("id", LegacyPaddedBenchIds.BLOCK_ENTITY_ID.toString()); + blockEntity.remove(PADDED_BLOCK_ENTITY_MARKER); + } + } + + private static long positionKey(int x, int y, int z) { + return ((long)x & 0x3FFFFFFL) << 38 | ((long)z & 0x3FFFFFFL) << 12 | (long)y & 0xFFFL; + } + + private static int getLegacyBlockId(CompoundTag level, int x, int y, int z) { + if (y < 0 || y > 255) { + return -1; + } + ListTag sections = level.getList("Sections", 10); + for (int sectionIndex = 0; sectionIndex < sections.size(); ++sectionIndex) { + CompoundTag section = sections.getCompound(sectionIndex); + if ((section.getByte("Y") & 0xFF) != y >> 4) { + continue; + } + byte[] blocks = section.getByteArray("Blocks"); + if (blocks.length != 4096) { + return -1; + } + int index = ((y & 15) << 8) | ((z & 15) << 4) | (x & 15); + return blockId(blocks, section.getByteArray("Add"), index); + } + return -1; + } + + private static int blockId(byte[] blocks, byte[] add, int index) { + int highBits = add.length == 2048 ? (add[index >> 1] >> ((index & 1) * 4)) & 0x0F : 0; + return (blocks[index] & 0xFF) | (highBits << 8); + } + + @SuppressWarnings("unchecked") + private static Dynamic[] expandFlatteningTable(int requiredLength) { + try { + Field valuesField = null; + Dynamic[] current = null; + for (Field candidate : BlockStateData.class.getDeclaredFields()) { + if (!candidate.getType().equals(Dynamic[].class)) { + continue; + } + candidate.setAccessible(true); + Dynamic[] values = (Dynamic[])candidate.get(null); + if (values.length >= 4096) { + valuesField = candidate; + current = values; + break; + } + } + if (valuesField == null) { + throw new NoSuchFieldException("Minecraft legacy block-state table"); + } + if (current.length >= requiredLength) { + return current; + } + Dynamic[] expanded = Arrays.copyOf(current, requiredLength); + valuesField.set(null, expanded); + return expanded; + } catch (ReflectiveOperationException e) { + throw new IllegalStateException("Could not expand Minecraft's legacy block-state flattening table", e); + } + } +} diff --git a/src/main/java/zone/moddev/mc/ironagefurniture/proxy/ClientProxy.java b/src/main/java/zone/moddev/mc/ironagefurniture/proxy/ClientProxy.java new file mode 100644 index 0000000000..cb83f2201c --- /dev/null +++ b/src/main/java/zone/moddev/mc/ironagefurniture/proxy/ClientProxy.java @@ -0,0 +1,15 @@ +package zone.moddev.mc.ironagefurniture.proxy; + +import net.minecraft.client.renderer.entity.EntityRenderers; +import zone.moddev.mc.ironagefurniture.client.renderer.SeatRenderer; +import zone.moddev.mc.ironagefurniture.client.renderer.ThrownLavaLampRenderer; +import zone.moddev.mc.ironagefurniture.registers.entities; + +public class ClientProxy extends CommonProxy { + + @Override + public void onSetupClient() { + EntityRenderers.register(entities.SEAT.get(), SeatRenderer::new); + EntityRenderers.register(entities.THROWN_LAVA_LAMP.get(), ThrownLavaLampRenderer::new); + } +} diff --git a/src/main/java/zone/moddev/mc/ironagefurniture/proxy/CommonProxy.java b/src/main/java/zone/moddev/mc/ironagefurniture/proxy/CommonProxy.java new file mode 100644 index 0000000000..036691d09f --- /dev/null +++ b/src/main/java/zone/moddev/mc/ironagefurniture/proxy/CommonProxy.java @@ -0,0 +1,11 @@ +package zone.moddev.mc.ironagefurniture.proxy; + +public class CommonProxy { + public void onSetupCommon() + { + + } + + public void onSetupClient() { + } +} diff --git a/src/main/java/com/mcmoddev/ironagefurniture/registers/entities.java b/src/main/java/zone/moddev/mc/ironagefurniture/registers/entities.java similarity index 63% rename from src/main/java/com/mcmoddev/ironagefurniture/registers/entities.java rename to src/main/java/zone/moddev/mc/ironagefurniture/registers/entities.java index ccbff364f5..6ef4f0bc65 100644 --- a/src/main/java/com/mcmoddev/ironagefurniture/registers/entities.java +++ b/src/main/java/zone/moddev/mc/ironagefurniture/registers/entities.java @@ -1,7 +1,8 @@ -package com.mcmoddev.ironagefurniture.registers; +package zone.moddev.mc.ironagefurniture.registers; -import com.mcmoddev.ironagefurniture.Ironagefurniture; -import com.mcmoddev.ironagefurniture.api.entity.Seat; +import zone.moddev.mc.ironagefurniture.Ironagefurniture; +import zone.moddev.mc.ironagefurniture.api.entity.Seat; +import zone.moddev.mc.ironagefurniture.api.entity.ThrownLavaLamp; import net.minecraft.world.entity.Entity; import net.minecraft.world.entity.EntityType; import net.minecraft.world.entity.MobCategory; @@ -12,9 +13,12 @@ public class entities { public static final DeferredRegister> REGISTER = DeferredRegister.create(ForgeRegistries.ENTITIES, Ironagefurniture.MODID); public static final RegistryObject> SEAT = register("seat", EntityType.Builder.of((type, world) -> new Seat(world), MobCategory.MISC).sized(0.0F, 0.0F).setCustomClientFactory((spawnEntity, world) -> new Seat(world))); + public static final RegistryObject> THROWN_LAVA_LAMP = register("thrown_lava_lamp", + EntityType.Builder.of(ThrownLavaLamp::new, MobCategory.MISC) + .sized(0.25F, 0.25F).clientTrackingRange(4).updateInterval(10)); private static RegistryObject> register(String name, EntityType.Builder builder) { return REGISTER.register(name, () -> builder.build(name)); } -} \ No newline at end of file +} diff --git a/src/main/resources/META-INF/coremods.json b/src/main/resources/META-INF/coremods.json new file mode 100644 index 0000000000..a9292b7acf --- /dev/null +++ b/src/main/resources/META-INF/coremods.json @@ -0,0 +1,3 @@ +{ + "ironagefurniture_legacy_world_fix": "coremods/ironagefurniture_legacy_world_fix.js" +} diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 8c69731922..4167bc47c7 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -1,30 +1,49 @@ modLoader="javafml" -loaderVersion="[39,)" -license="All rights reserved" +loaderVersion="${loader_version_range}" +license="${mod_license}" +issueTrackerURL="https://github.com/MinecraftModDevelopmentMods/IronAgeFurniture/issues" + [[mods]] -modId="ironagefurniture" -version="${file.jarVersion}" -displayName="Iron Age Furniture" +modId="${mod_id}" +version="${version}" +displayName="${mod_name}" +displayURL="https://www.curseforge.com/minecraft/mc-mods/iron-age-furniture" +credits="Cyanobacterium, SkyBlade1978, FoxNekitsune, the MMD Team, Forge, FML, and the mod authors" +authors="${mod_authors}" description=''' -Furniture from the Iron Age +${mod_description} ''' -updateJSONURL="https://raw.githubusercontent.com/MinecraftModDevelopmentMods/ironagefurniture/master/update.json" -issueTrackerURL="https://github.com/MinecraftModDevelopmentMods/ironagefurniture/issues" -displayURL="https://www.curseforge.com/minecraft/mc-mods/ironagefurniture" -logoFile="" -credits="SkyBlade1978" -authors="SkyBlade1978" +[[dependencies.ironagefurniture]] + modId="forge" + mandatory=true + versionRange="${forge_version_range}" + ordering="NONE" + side="BOTH" +[[dependencies.ironagefurniture]] + modId="minecraft" + mandatory=true + versionRange="[${minecraft_version}]" + ordering="NONE" + side="BOTH" + +[[dependencies.ironagefurniture]] + modId="biomesoplenty" + mandatory=false + versionRange="[0,)" + ordering="AFTER" + side="BOTH" [[dependencies.ironagefurniture]] - modId="forge" - mandatory=true - versionRange="[39,)" - ordering="NONE" - side="BOTH" + modId="immersiveengineering" + mandatory=false + versionRange="[0,)" + ordering="AFTER" + side="BOTH" + [[dependencies.ironagefurniture]] - modId="minecraft" - mandatory=true - versionRange="[1.18.2]" - ordering="NONE" - side="BOTH" \ No newline at end of file + modId="byg" + mandatory=false + versionRange="[0,)" + ordering="AFTER" + side="BOTH" diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_acacia.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_acacia.json index da3c037610..697d84256d 100644 --- a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_acacia.json +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_acacia.json @@ -1,131 +1,131 @@ { "variants": { "facing=north,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_acacia", "y": 0 }, "facing=east,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_acacia", "y": 90 }, "facing=south,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_acacia", "y": 180 }, "facing=west,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_acacia", "y": 270 }, "facing=north,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_acacia", "y": 0 }, "facing=east,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_acacia", "y": 90 }, "facing=south,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_acacia", "y": 180 }, "facing=west,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_acacia", "y": 270 }, "facing=north,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_acacia", "y": 0 }, "facing=east,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_acacia", "y": 90 }, "facing=south,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_acacia", "y": 180 }, "facing=west,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_acacia", "y": 270 }, "facing=north,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_acacia", "y": 0 }, "facing=east,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_acacia", "y": 90 }, "facing=south,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_acacia", "y": 180 }, "facing=west,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_acacia", "y": 270 }, "facing=north,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_acacia", "y": 0 }, "facing=east,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_acacia", "y": 90 }, "facing=south,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_acacia", "y": 180 }, "facing=west,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_acacia", "y": 270 }, "facing=north,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_acacia", "y": 0 }, "facing=east,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_acacia", "y": 90 }, "facing=south,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_acacia", "y": 180 }, "facing=west,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_acacia", "y": 270 }, "facing=north,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_acacia", "y": 0 }, "facing=east,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_acacia", "y": 90 }, "facing=south,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_acacia", "y": 180 }, "facing=west,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_acacia", "y": 270 }, "facing=north,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_acacia", "y": 0 }, "facing=east,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_acacia", "y": 90 }, "facing=south,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_acacia", "y": 180 }, "facing=west,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_acacia", "y": 270 } } diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_big_oak.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_big_oak.json new file mode 100644 index 0000000000..f8c3cb2300 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_big_oak.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_dark_oak", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_dark_oak", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_dark_oak", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_dark_oak", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_dark_oak", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_dark_oak", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_dark_oak", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_dark_oak", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_dark_oak", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_dark_oak", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_dark_oak", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_dark_oak", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_dark_oak", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_dark_oak", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_dark_oak", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_dark_oak", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_dark_oak", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_dark_oak", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_dark_oak", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_dark_oak", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_dark_oak", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_dark_oak", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_dark_oak", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_dark_oak", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_dark_oak", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_dark_oak", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_dark_oak", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_dark_oak", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_dark_oak", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_dark_oak", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_dark_oak", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_dark_oak", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_cherry.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_cherry.json new file mode 100644 index 0000000000..07378a533c --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_cherry.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_cherry", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_cherry", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_cherry", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_cherry", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_cherry", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_cherry", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_cherry", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_cherry", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_cherry", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_cherry", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_cherry", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_cherry", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_cherry", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_cherry", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_cherry", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_cherry", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_cherry", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_cherry", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_cherry", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_cherry", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_cherry", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_cherry", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_cherry", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_cherry", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_dead.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_dead.json new file mode 100644 index 0000000000..eaf79c2291 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_dead.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_dead", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_dead", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_dead", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_dead", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_dead", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_dead", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_dead", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_dead", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_dead", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_dead", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_dead", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_dead", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_dead", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_dead", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_dead", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_dead", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_dead", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_dead", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_dead", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_dead", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_dead", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_dead", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_dead", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_dead", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_fir.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_fir.json new file mode 100644 index 0000000000..2a7d69d523 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_fir.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_fir", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_fir", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_fir", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_fir", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_fir", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_fir", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_fir", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_fir", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_fir", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_fir", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_fir", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_fir", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_fir", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_fir", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_fir", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_fir", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_fir", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_fir", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_fir", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_fir", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_fir", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_fir", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_fir", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_fir", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_hellbark.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_hellbark.json new file mode 100644 index 0000000000..e7a1606f92 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_hellbark.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_hellbark", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_hellbark", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_hellbark", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_hellbark", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_hellbark", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_hellbark", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_hellbark", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_hellbark", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_hellbark", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_hellbark", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_hellbark", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_hellbark", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_hellbark", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_hellbark", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_hellbark", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_hellbark", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_hellbark", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_hellbark", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_hellbark", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_hellbark", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_hellbark", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_hellbark", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_hellbark", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_hellbark", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_jacaranda.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_jacaranda.json new file mode 100644 index 0000000000..d9eeaf3093 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_jacaranda.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_jacaranda", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_jacaranda", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_jacaranda", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_jacaranda", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_jacaranda", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_jacaranda", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_jacaranda", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_jacaranda", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_jacaranda", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_jacaranda", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_jacaranda", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_jacaranda", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_jacaranda", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_jacaranda", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_jacaranda", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_jacaranda", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_jacaranda", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_jacaranda", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_jacaranda", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_jacaranda", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_jacaranda", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_jacaranda", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_jacaranda", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_jacaranda", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_magic.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_magic.json new file mode 100644 index 0000000000..06a3ed91d0 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_magic.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_magic", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_magic", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_magic", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_magic", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_magic", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_magic", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_magic", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_magic", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_magic", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_magic", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_magic", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_magic", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_magic", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_magic", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_magic", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_magic", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_magic", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_magic", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_magic", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_magic", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_magic", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_magic", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_magic", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_magic", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_mahogany.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_mahogany.json new file mode 100644 index 0000000000..437e05280d --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_mahogany.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_mahogany", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_mahogany", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_mahogany", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_mahogany", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_mahogany", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_mahogany", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_mahogany", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_mahogany", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_mahogany", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_mahogany", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_mahogany", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_mahogany", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_mahogany", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_mahogany", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_mahogany", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_mahogany", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_mahogany", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_mahogany", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_mahogany", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_mahogany", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_mahogany", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_mahogany", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_mahogany", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_mahogany", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_palm.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_palm.json new file mode 100644 index 0000000000..f9ed1551a3 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_palm.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_palm", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_palm", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_palm", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_palm", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_palm", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_palm", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_palm", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_palm", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_palm", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_palm", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_palm", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_palm", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_palm", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_palm", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_palm", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_palm", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_palm", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_palm", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_palm", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_palm", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_palm", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_palm", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_palm", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_palm", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_redwood.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_redwood.json new file mode 100644 index 0000000000..17daa85f33 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_redwood.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_redwood", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_redwood", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_redwood", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_redwood", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_redwood", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_redwood", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_redwood", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_redwood", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_redwood", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_redwood", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_redwood", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_redwood", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_redwood", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_redwood", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_redwood", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_redwood", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_redwood", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_redwood", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_redwood", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_redwood", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_redwood", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_redwood", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_redwood", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_redwood", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_umbran.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_umbran.json new file mode 100644 index 0000000000..a1a7ef3e19 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_umbran.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_umbran", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_umbran", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_umbran", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_umbran", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_umbran", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_umbran", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_umbran", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_umbran", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_umbran", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_umbran", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_umbran", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_umbran", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_umbran", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_umbran", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_umbran", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_umbran", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_umbran", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_umbran", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_umbran", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_umbran", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_umbran", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_umbran", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_umbran", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_umbran", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_willow.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_willow.json new file mode 100644 index 0000000000..5b3822958e --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_biomesoplenty_willow.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_willow", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_willow", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_willow", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_willow", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_willow", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_willow", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_willow", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_willow", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_willow", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_willow", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_willow", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_willow", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_willow", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_willow", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_willow", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_biomesoplenty_willow", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_willow", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_willow", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_willow", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_biomesoplenty_willow", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_willow", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_willow", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_willow", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_biomesoplenty_willow", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_birch.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_birch.json index 3c81a14856..39f86fb209 100644 --- a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_birch.json +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_birch.json @@ -1,131 +1,131 @@ { "variants": { "facing=north,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_birch", "y": 0 }, "facing=east,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_birch", "y": 90 }, "facing=south,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_birch", "y": 180 }, "facing=west,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_birch", "y": 270 }, "facing=north,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_birch", "y": 0 }, "facing=east,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_birch", "y": 90 }, "facing=south,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_birch", "y": 180 }, "facing=west,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_birch", "y": 270 }, "facing=north,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_birch", "y": 0 }, "facing=east,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_birch", "y": 90 }, "facing=south,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_birch", "y": 180 }, "facing=west,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_birch", "y": 270 }, "facing=north,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_birch", "y": 0 }, "facing=east,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_birch", "y": 90 }, "facing=south,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_birch", "y": 180 }, "facing=west,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_birch", "y": 270 }, "facing=north,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_birch", "y": 0 }, "facing=east,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_birch", "y": 90 }, "facing=south,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_birch", "y": 180 }, "facing=west,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_birch", "y": 270 }, "facing=north,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_birch", "y": 0 }, "facing=east,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_birch", "y": 90 }, "facing=south,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_birch", "y": 180 }, "facing=west,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_birch", "y": 270 }, "facing=north,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_birch", "y": 0 }, "facing=east,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_birch", "y": 90 }, "facing=south,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_birch", "y": 180 }, "facing=west,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_birch", "y": 270 }, "facing=north,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_birch", "y": 0 }, "facing=east,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_birch", "y": 90 }, "facing=south,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_birch", "y": 180 }, "facing=west,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_birch", "y": 270 } } diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_aspen.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_aspen.json new file mode 100644 index 0000000000..765f80485f --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_aspen.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_aspen", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_aspen", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_aspen", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_aspen", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_aspen", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_aspen", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_aspen", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_aspen", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_aspen", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_aspen", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_aspen", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_aspen", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_aspen", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_aspen", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_aspen", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_aspen", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_aspen", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_aspen", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_aspen", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_aspen", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_aspen", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_aspen", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_aspen", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_aspen", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_aspen", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_aspen", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_aspen", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_aspen", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_aspen", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_aspen", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_aspen", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_aspen", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_baobab.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_baobab.json new file mode 100644 index 0000000000..e7f1a169bc --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_baobab.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_baobab", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_baobab", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_baobab", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_baobab", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_baobab", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_baobab", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_baobab", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_baobab", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_baobab", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_baobab", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_baobab", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_baobab", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_baobab", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_baobab", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_baobab", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_baobab", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_baobab", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_baobab", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_baobab", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_baobab", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_baobab", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_baobab", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_baobab", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_baobab", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_baobab", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_baobab", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_baobab", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_baobab", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_baobab", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_baobab", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_baobab", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_baobab", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_blue_enchanted.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_blue_enchanted.json new file mode 100644 index 0000000000..b3d7ed456e --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_blue_enchanted.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_blue_enchanted", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_blue_enchanted", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_blue_enchanted", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_blue_enchanted", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_blue_enchanted", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_blue_enchanted", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_blue_enchanted", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_blue_enchanted", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_blue_enchanted", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_blue_enchanted", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_blue_enchanted", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_blue_enchanted", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_blue_enchanted", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_blue_enchanted", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_blue_enchanted", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_blue_enchanted", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_blue_enchanted", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_blue_enchanted", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_blue_enchanted", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_blue_enchanted", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_blue_enchanted", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_blue_enchanted", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_blue_enchanted", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_blue_enchanted", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_bulbis.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_bulbis.json new file mode 100644 index 0000000000..c70d2b126e --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_bulbis.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_bulbis", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_bulbis", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_bulbis", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_bulbis", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_bulbis", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_bulbis", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_bulbis", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_bulbis", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_bulbis", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_bulbis", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_bulbis", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_bulbis", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_bulbis", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_bulbis", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_bulbis", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_bulbis", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_bulbis", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_bulbis", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_bulbis", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_bulbis", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_bulbis", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_bulbis", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_bulbis", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_bulbis", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_bulbis", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_bulbis", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_bulbis", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_bulbis", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_bulbis", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_bulbis", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_bulbis", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_bulbis", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_cherry.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_cherry.json new file mode 100644 index 0000000000..15d5e46583 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_cherry.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cherry", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cherry", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cherry", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cherry", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cherry", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cherry", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cherry", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cherry", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cherry", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cherry", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cherry", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cherry", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cherry", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cherry", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cherry", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cherry", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cherry", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cherry", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cherry", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cherry", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cherry", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cherry", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cherry", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cherry", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cherry", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cherry", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cherry", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cherry", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cherry", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cherry", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cherry", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cherry", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_cika.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_cika.json new file mode 100644 index 0000000000..bf4e3e7067 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_cika.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cika", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cika", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cika", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cika", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cika", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cika", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cika", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cika", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cika", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cika", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cika", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cika", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cika", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cika", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cika", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cika", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cika", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cika", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cika", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cika", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cika", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cika", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cika", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cika", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cika", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cika", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cika", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cika", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cika", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cika", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cika", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cika", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_cypress.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_cypress.json new file mode 100644 index 0000000000..65780e4f7f --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_cypress.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cypress", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cypress", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cypress", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cypress", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cypress", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cypress", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cypress", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cypress", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cypress", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cypress", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cypress", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cypress", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cypress", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cypress", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cypress", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cypress", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cypress", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cypress", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cypress", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_cypress", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cypress", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cypress", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cypress", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_cypress", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cypress", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cypress", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cypress", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_cypress", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cypress", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cypress", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cypress", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_cypress", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_ebony.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_ebony.json new file mode 100644 index 0000000000..28ce78ac8a --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_ebony.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_ebony", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_ebony", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_ebony", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_ebony", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_ebony", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_ebony", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_ebony", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_ebony", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_ebony", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_ebony", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_ebony", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_ebony", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_ebony", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_ebony", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_ebony", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_ebony", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_ebony", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_ebony", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_ebony", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_ebony", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_ebony", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_ebony", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_ebony", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_ebony", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_ebony", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_ebony", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_ebony", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_ebony", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_ebony", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_ebony", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_ebony", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_ebony", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_embur.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_embur.json new file mode 100644 index 0000000000..7d7a1d28b4 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_embur.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_embur", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_embur", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_embur", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_embur", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_embur", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_embur", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_embur", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_embur", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_embur", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_embur", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_embur", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_embur", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_embur", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_embur", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_embur", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_embur", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_embur", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_embur", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_embur", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_embur", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_embur", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_embur", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_embur", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_embur", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_embur", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_embur", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_embur", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_embur", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_embur", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_embur", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_embur", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_embur", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_ether.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_ether.json new file mode 100644 index 0000000000..0787afcccc --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_ether.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_ether", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_ether", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_ether", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_ether", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_ether", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_ether", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_ether", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_ether", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_ether", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_ether", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_ether", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_ether", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_ether", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_ether", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_ether", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_ether", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_ether", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_ether", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_ether", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_ether", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_ether", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_ether", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_ether", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_ether", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_ether", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_ether", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_ether", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_ether", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_ether", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_ether", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_ether", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_ether", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_fir.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_fir.json new file mode 100644 index 0000000000..b20a270649 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_fir.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_fir", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_fir", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_fir", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_fir", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_fir", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_fir", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_fir", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_fir", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_fir", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_fir", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_fir", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_fir", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_fir", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_fir", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_fir", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_fir", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_fir", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_fir", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_fir", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_fir", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_fir", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_fir", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_fir", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_fir", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_fir", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_fir", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_fir", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_fir", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_fir", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_fir", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_fir", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_fir", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_green_enchanted.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_green_enchanted.json new file mode 100644 index 0000000000..8183431e48 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_green_enchanted.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_green_enchanted", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_green_enchanted", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_green_enchanted", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_green_enchanted", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_green_enchanted", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_green_enchanted", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_green_enchanted", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_green_enchanted", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_green_enchanted", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_green_enchanted", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_green_enchanted", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_green_enchanted", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_green_enchanted", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_green_enchanted", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_green_enchanted", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_green_enchanted", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_green_enchanted", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_green_enchanted", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_green_enchanted", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_green_enchanted", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_green_enchanted", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_green_enchanted", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_green_enchanted", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_green_enchanted", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_holly.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_holly.json new file mode 100644 index 0000000000..7fa9305a19 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_holly.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_holly", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_holly", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_holly", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_holly", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_holly", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_holly", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_holly", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_holly", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_holly", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_holly", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_holly", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_holly", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_holly", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_holly", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_holly", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_holly", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_holly", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_holly", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_holly", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_holly", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_holly", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_holly", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_holly", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_holly", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_holly", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_holly", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_holly", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_holly", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_holly", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_holly", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_holly", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_holly", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_jacaranda.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_jacaranda.json new file mode 100644 index 0000000000..7e9035286a --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_jacaranda.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_jacaranda", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_jacaranda", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_jacaranda", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_jacaranda", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_jacaranda", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_jacaranda", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_jacaranda", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_jacaranda", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_jacaranda", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_jacaranda", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_jacaranda", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_jacaranda", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_jacaranda", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_jacaranda", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_jacaranda", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_jacaranda", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_jacaranda", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_jacaranda", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_jacaranda", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_jacaranda", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_jacaranda", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_jacaranda", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_jacaranda", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_jacaranda", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_lament.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_lament.json new file mode 100644 index 0000000000..88e293bfee --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_lament.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_lament", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_lament", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_lament", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_lament", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_lament", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_lament", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_lament", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_lament", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_lament", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_lament", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_lament", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_lament", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_lament", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_lament", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_lament", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_lament", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_lament", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_lament", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_lament", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_lament", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_lament", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_lament", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_lament", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_lament", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_lament", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_lament", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_lament", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_lament", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_lament", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_lament", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_lament", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_lament", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_mahogany.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_mahogany.json new file mode 100644 index 0000000000..fd5fc9782e --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_mahogany.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_mahogany", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_mahogany", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_mahogany", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_mahogany", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_mahogany", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_mahogany", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_mahogany", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_mahogany", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_mahogany", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_mahogany", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_mahogany", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_mahogany", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_mahogany", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_mahogany", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_mahogany", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_mahogany", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_mahogany", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_mahogany", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_mahogany", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_mahogany", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_mahogany", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_mahogany", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_mahogany", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_mahogany", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_mahogany", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_mahogany", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_mahogany", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_mahogany", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_mahogany", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_mahogany", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_mahogany", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_mahogany", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_mangrove.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_mangrove.json new file mode 100644 index 0000000000..c24cf10937 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_mangrove.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_mangrove", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_mangrove", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_mangrove", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_mangrove", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_mangrove", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_mangrove", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_mangrove", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_mangrove", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_mangrove", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_mangrove", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_mangrove", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_mangrove", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_mangrove", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_mangrove", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_mangrove", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_mangrove", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_mangrove", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_mangrove", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_mangrove", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_mangrove", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_mangrove", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_mangrove", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_mangrove", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_mangrove", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_mangrove", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_mangrove", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_mangrove", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_mangrove", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_mangrove", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_mangrove", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_mangrove", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_mangrove", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_maple.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_maple.json new file mode 100644 index 0000000000..7df0f2f61e --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_maple.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_maple", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_maple", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_maple", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_maple", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_maple", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_maple", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_maple", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_maple", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_maple", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_maple", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_maple", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_maple", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_maple", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_maple", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_maple", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_maple", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_maple", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_maple", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_maple", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_maple", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_maple", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_maple", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_maple", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_maple", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_maple", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_maple", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_maple", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_maple", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_maple", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_maple", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_maple", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_maple", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_nightshade.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_nightshade.json new file mode 100644 index 0000000000..3f1a3430c2 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_nightshade.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_nightshade", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_nightshade", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_nightshade", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_nightshade", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_nightshade", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_nightshade", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_nightshade", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_nightshade", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_nightshade", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_nightshade", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_nightshade", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_nightshade", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_nightshade", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_nightshade", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_nightshade", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_nightshade", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_nightshade", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_nightshade", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_nightshade", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_nightshade", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_nightshade", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_nightshade", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_nightshade", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_nightshade", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_nightshade", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_nightshade", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_nightshade", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_nightshade", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_nightshade", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_nightshade", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_nightshade", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_nightshade", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_palm.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_palm.json new file mode 100644 index 0000000000..2a417d989c --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_palm.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_palm", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_palm", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_palm", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_palm", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_palm", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_palm", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_palm", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_palm", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_palm", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_palm", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_palm", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_palm", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_palm", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_palm", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_palm", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_palm", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_palm", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_palm", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_palm", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_palm", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_palm", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_palm", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_palm", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_palm", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_palm", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_palm", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_palm", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_palm", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_palm", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_palm", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_palm", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_palm", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_pine.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_pine.json new file mode 100644 index 0000000000..06c4b568eb --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_pine.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_pine", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_pine", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_pine", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_pine", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_pine", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_pine", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_pine", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_pine", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_pine", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_pine", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_pine", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_pine", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_pine", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_pine", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_pine", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_pine", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_pine", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_pine", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_pine", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_pine", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_pine", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_pine", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_pine", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_pine", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_pine", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_pine", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_pine", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_pine", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_pine", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_pine", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_pine", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_pine", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_rainbow_eucalyptus.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_rainbow_eucalyptus.json new file mode 100644 index 0000000000..d62ee39424 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_rainbow_eucalyptus.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_rainbow_eucalyptus", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_rainbow_eucalyptus", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_rainbow_eucalyptus", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_rainbow_eucalyptus", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_rainbow_eucalyptus", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_rainbow_eucalyptus", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_rainbow_eucalyptus", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_rainbow_eucalyptus", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_rainbow_eucalyptus", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_rainbow_eucalyptus", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_rainbow_eucalyptus", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_rainbow_eucalyptus", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_rainbow_eucalyptus", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_rainbow_eucalyptus", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_rainbow_eucalyptus", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_rainbow_eucalyptus", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_rainbow_eucalyptus", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_rainbow_eucalyptus", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_rainbow_eucalyptus", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_rainbow_eucalyptus", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_rainbow_eucalyptus", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_rainbow_eucalyptus", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_rainbow_eucalyptus", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_rainbow_eucalyptus", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_redwood.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_redwood.json new file mode 100644 index 0000000000..c71bbcf5c5 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_redwood.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_redwood", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_redwood", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_redwood", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_redwood", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_redwood", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_redwood", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_redwood", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_redwood", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_redwood", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_redwood", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_redwood", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_redwood", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_redwood", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_redwood", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_redwood", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_redwood", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_redwood", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_redwood", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_redwood", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_redwood", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_redwood", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_redwood", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_redwood", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_redwood", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_redwood", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_redwood", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_redwood", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_redwood", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_redwood", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_redwood", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_redwood", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_redwood", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_skyris.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_skyris.json new file mode 100644 index 0000000000..25232e9a1a --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_skyris.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_skyris", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_skyris", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_skyris", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_skyris", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_skyris", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_skyris", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_skyris", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_skyris", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_skyris", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_skyris", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_skyris", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_skyris", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_skyris", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_skyris", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_skyris", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_skyris", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_skyris", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_skyris", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_skyris", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_skyris", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_skyris", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_skyris", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_skyris", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_skyris", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_skyris", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_skyris", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_skyris", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_skyris", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_skyris", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_skyris", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_skyris", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_skyris", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_willow.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_willow.json new file mode 100644 index 0000000000..d812f28f0f --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_willow.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_willow", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_willow", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_willow", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_willow", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_willow", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_willow", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_willow", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_willow", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_willow", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_willow", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_willow", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_willow", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_willow", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_willow", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_willow", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_willow", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_willow", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_willow", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_willow", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_willow", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_willow", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_willow", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_willow", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_willow", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_willow", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_willow", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_willow", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_willow", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_willow", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_willow", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_willow", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_willow", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_witch_hazel.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_witch_hazel.json new file mode 100644 index 0000000000..b2572cd474 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_witch_hazel.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_witch_hazel", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_witch_hazel", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_witch_hazel", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_witch_hazel", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_witch_hazel", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_witch_hazel", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_witch_hazel", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_witch_hazel", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_witch_hazel", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_witch_hazel", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_witch_hazel", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_witch_hazel", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_witch_hazel", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_witch_hazel", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_witch_hazel", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_witch_hazel", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_witch_hazel", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_witch_hazel", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_witch_hazel", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_witch_hazel", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_witch_hazel", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_witch_hazel", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_witch_hazel", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_witch_hazel", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_zelkova.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_zelkova.json new file mode 100644 index 0000000000..14f12bb970 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_byg_zelkova.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_zelkova", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_zelkova", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_zelkova", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_zelkova", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_zelkova", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_zelkova", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_zelkova", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_zelkova", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_zelkova", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_zelkova", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_zelkova", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_zelkova", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_zelkova", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_zelkova", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_zelkova", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_zelkova", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_zelkova", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_zelkova", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_zelkova", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_byg_zelkova", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_zelkova", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_zelkova", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_zelkova", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_byg_zelkova", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_zelkova", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_zelkova", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_zelkova", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_byg_zelkova", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_zelkova", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_zelkova", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_zelkova", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_byg_zelkova", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_crimson.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_crimson.json new file mode 100644 index 0000000000..1357981fa2 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_crimson.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_crimson", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_crimson", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_crimson", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_crimson", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_crimson", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_crimson", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_crimson", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_crimson", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_crimson", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_crimson", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_crimson", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_crimson", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_crimson", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_crimson", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_crimson", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_crimson", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_crimson", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_crimson", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_crimson", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_crimson", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_crimson", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_crimson", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_crimson", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_crimson", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_crimson", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_crimson", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_crimson", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_crimson", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_crimson", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_crimson", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_crimson", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_crimson", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_immersiveengineering_treated_wood.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_immersiveengineering_treated_wood.json index 067bf87ae0..e5485eb799 100644 --- a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_immersiveengineering_treated_wood.json @@ -1,131 +1,131 @@ { "variants": { "facing=north,type=single,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_single_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood", "y": 0 }, "facing=east,type=single,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_single_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood", "y": 90 }, "facing=south,type=single,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_single_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood", "y": 180 }, "facing=west,type=single,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_single_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood", "y": 270 }, "facing=north,type=middle,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_middle_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_immersiveengineering_treated_wood", "y": 0 }, "facing=east,type=middle,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_middle_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_immersiveengineering_treated_wood", "y": 90 }, "facing=south,type=middle,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_middle_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_immersiveengineering_treated_wood", "y": 180 }, "facing=west,type=middle,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_middle_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_immersiveengineering_treated_wood", "y": 270 }, "facing=north,type=right,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_right_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_immersiveengineering_treated_wood", "y": 0 }, "facing=east,type=right,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_right_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_immersiveengineering_treated_wood", "y": 90 }, "facing=south,type=right,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_right_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_immersiveengineering_treated_wood", "y": 180 }, "facing=west,type=right,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_right_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_immersiveengineering_treated_wood", "y": 270 }, "facing=north,type=left,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_left_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_immersiveengineering_treated_wood", "y": 0 }, "facing=east,type=left,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_left_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_immersiveengineering_treated_wood", "y": 90 }, "facing=south,type=left,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_left_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_immersiveengineering_treated_wood", "y": 180 }, "facing=west,type=left,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_left_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_immersiveengineering_treated_wood", "y": 270 }, "facing=north,type=single,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_single_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood", "y": 0 }, "facing=east,type=single,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_single_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood", "y": 90 }, "facing=south,type=single,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_single_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood", "y": 180 }, "facing=west,type=single,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_single_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood", "y": 270 }, "facing=north,type=middle,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_middle_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_immersiveengineering_treated_wood", "y": 0 }, "facing=east,type=middle,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_middle_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_immersiveengineering_treated_wood", "y": 90 }, "facing=south,type=middle,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_middle_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_immersiveengineering_treated_wood", "y": 180 }, "facing=west,type=middle,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_middle_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_immersiveengineering_treated_wood", "y": 270 }, "facing=north,type=right,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_right_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_immersiveengineering_treated_wood", "y": 0 }, "facing=east,type=right,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_right_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_immersiveengineering_treated_wood", "y": 90 }, "facing=south,type=right,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_right_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_immersiveengineering_treated_wood", "y": 180 }, "facing=west,type=right,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_right_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_immersiveengineering_treated_wood", "y": 270 }, "facing=north,type=left,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_left_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_immersiveengineering_treated_wood", "y": 0 }, "facing=east,type=left,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_left_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_immersiveengineering_treated_wood", "y": 90 }, "facing=south,type=left,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_left_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_immersiveengineering_treated_wood", "y": 180 }, "facing=west,type=left,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_back_padded_left_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_immersiveengineering_treated_wood", "y": 270 } } diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_jungle.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_jungle.json index 0abf76195d..4723d6f647 100644 --- a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_jungle.json +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_jungle.json @@ -1,131 +1,131 @@ { "variants": { "facing=north,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_jungle", "y": 0 }, "facing=east,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_jungle", "y": 90 }, "facing=south,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_jungle", "y": 180 }, "facing=west,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_jungle", "y": 270 }, "facing=north,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_jungle", "y": 0 }, "facing=east,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_jungle", "y": 90 }, "facing=south,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_jungle", "y": 180 }, "facing=west,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_jungle", "y": 270 }, "facing=north,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_jungle", "y": 0 }, "facing=east,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_jungle", "y": 90 }, "facing=south,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_jungle", "y": 180 }, "facing=west,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_jungle", "y": 270 }, "facing=north,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_jungle", "y": 0 }, "facing=east,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_jungle", "y": 90 }, "facing=south,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_jungle", "y": 180 }, "facing=west,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_jungle", "y": 270 }, "facing=north,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_jungle", "y": 0 }, "facing=east,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_jungle", "y": 90 }, "facing=south,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_jungle", "y": 180 }, "facing=west,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_jungle", "y": 270 }, "facing=north,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_jungle", "y": 0 }, "facing=east,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_jungle", "y": 90 }, "facing=south,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_jungle", "y": 180 }, "facing=west,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_jungle", "y": 270 }, "facing=north,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_jungle", "y": 0 }, "facing=east,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_jungle", "y": 90 }, "facing=south,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_jungle", "y": 180 }, "facing=west,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_jungle", "y": 270 }, "facing=north,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_jungle", "y": 0 }, "facing=east,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_jungle", "y": 90 }, "facing=south,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_jungle", "y": 180 }, "facing=west,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_jungle", "y": 270 } } diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_oak.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_oak.json index 3c16a51518..56c784fec0 100644 --- a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_oak.json +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_oak.json @@ -1,131 +1,131 @@ { "variants": { "facing=north,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_oak", "y": 0 }, "facing=east,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_oak", "y": 90 }, "facing=south,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_oak", "y": 180 }, "facing=west,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_oak", "y": 270 }, "facing=north,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_oak", "y": 0 }, "facing=east,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_oak", "y": 90 }, "facing=south,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_oak", "y": 180 }, "facing=west,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_oak", "y": 270 }, "facing=north,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_oak", "y": 0 }, "facing=east,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_oak", "y": 90 }, "facing=south,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_oak", "y": 180 }, "facing=west,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_oak", "y": 270 }, "facing=north,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_oak", "y": 0 }, "facing=east,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_oak", "y": 90 }, "facing=south,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_oak", "y": 180 }, "facing=west,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_oak", "y": 270 }, "facing=north,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_oak", "y": 0 }, "facing=east,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_oak", "y": 90 }, "facing=south,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_oak", "y": 180 }, "facing=west,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_oak", "y": 270 }, "facing=north,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_oak", "y": 0 }, "facing=east,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_oak", "y": 90 }, "facing=south,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_oak", "y": 180 }, "facing=west,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_oak", "y": 270 }, "facing=north,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_oak", "y": 0 }, "facing=east,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_oak", "y": 90 }, "facing=south,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_oak", "y": 180 }, "facing=west,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_oak", "y": 270 }, "facing=north,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_oak", "y": 0 }, "facing=east,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_oak", "y": 90 }, "facing=south,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_oak", "y": 180 }, "facing=west,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_oak", "y": 270 } } diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_spruce.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_spruce.json index 4c520fb59d..a359d13064 100644 --- a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_spruce.json +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_spruce.json @@ -1,131 +1,131 @@ { "variants": { "facing=north,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_spruce", "y": 0 }, "facing=east,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_spruce", "y": 90 }, "facing=south,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_spruce", "y": 180 }, "facing=west,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_spruce", "y": 270 }, "facing=north,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_spruce", "y": 0 }, "facing=east,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_spruce", "y": 90 }, "facing=south,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_spruce", "y": 180 }, "facing=west,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_spruce", "y": 270 }, "facing=north,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_spruce", "y": 0 }, "facing=east,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_spruce", "y": 90 }, "facing=south,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_spruce", "y": 180 }, "facing=west,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_spruce", "y": 270 }, "facing=north,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_spruce", "y": 0 }, "facing=east,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_spruce", "y": 90 }, "facing=south,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_spruce", "y": 180 }, "facing=west,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_spruce", "y": 270 }, "facing=north,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_spruce", "y": 0 }, "facing=east,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_spruce", "y": 90 }, "facing=south,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_spruce", "y": 180 }, "facing=west,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_single_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_spruce", "y": 270 }, "facing=north,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_spruce", "y": 0 }, "facing=east,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_spruce", "y": 90 }, "facing=south,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_spruce", "y": 180 }, "facing=west,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_middle_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_spruce", "y": 270 }, "facing=north,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_spruce", "y": 0 }, "facing=east,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_spruce", "y": 90 }, "facing=south,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_spruce", "y": 180 }, "facing=west,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_right_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_spruce", "y": 270 }, "facing=north,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_spruce", "y": 0 }, "facing=east,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_spruce", "y": 90 }, "facing=south,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_spruce", "y": 180 }, "facing=west,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_left_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_spruce", "y": 270 } } diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_warped.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_warped.json new file mode 100644 index 0000000000..87c775afa2 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_back_padded_single_warped.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_warped", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_warped", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_warped", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_warped", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_warped", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_warped", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_warped", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_warped", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_warped", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_warped", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_warped", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_warped", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_warped", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_warped", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_warped", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_warped", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_warped", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_warped", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_warped", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_single_warped", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_warped", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_warped", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_warped", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_middle_warped", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_warped", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_warped", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_warped", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_right_warped", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_warped", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_warped", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_warped", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_back_padded_red_left_warped", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_acacia.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_acacia.json index 79c33a3e5b..7003e8789d 100644 --- a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_acacia.json +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_acacia.json @@ -1,131 +1,131 @@ { "variants": { "facing=north,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_acacia", "y": 0 }, "facing=east,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_acacia", "y": 90 }, "facing=south,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_acacia", "y": 180 }, "facing=west,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_acacia", "y": 270 }, "facing=north,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_acacia", "y": 0 }, "facing=east,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_acacia", "y": 90 }, "facing=south,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_acacia", "y": 180 }, "facing=west,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_acacia", "y": 270 }, "facing=north,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_acacia", "y": 0 }, "facing=east,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_acacia", "y": 90 }, "facing=south,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_acacia", "y": 180 }, "facing=west,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_acacia", "y": 270 }, "facing=north,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_acacia", "y": 0 }, "facing=east,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_acacia", "y": 90 }, "facing=south,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_acacia", "y": 180 }, "facing=west,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_acacia", "y": 270 }, "facing=north,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_acacia", "y": 0 }, "facing=east,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_acacia", "y": 90 }, "facing=south,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_acacia", "y": 180 }, "facing=west,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_acacia", "y": 270 }, "facing=north,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_acacia", "y": 0 }, "facing=east,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_acacia", "y": 90 }, "facing=south,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_acacia", "y": 180 }, "facing=west,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_acacia", "y": 270 }, "facing=north,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_acacia", "y": 0 }, "facing=east,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_acacia", "y": 90 }, "facing=south,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_acacia", "y": 180 }, "facing=west,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_acacia", "y": 270 }, "facing=north,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_acacia", "y": 0 }, "facing=east,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_acacia", "y": 90 }, "facing=south,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_acacia", "y": 180 }, "facing=west,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_acacia", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_acacia", "y": 270 } } diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_big_oak.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_big_oak.json new file mode 100644 index 0000000000..48d909a68a --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_big_oak.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_dark_oak", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_dark_oak", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_dark_oak", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_dark_oak", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_dark_oak", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_dark_oak", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_dark_oak", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_dark_oak", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_dark_oak", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_dark_oak", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_dark_oak", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_dark_oak", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_dark_oak", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_dark_oak", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_dark_oak", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_dark_oak", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_dark_oak", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_dark_oak", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_dark_oak", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_dark_oak", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_dark_oak", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_dark_oak", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_dark_oak", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_dark_oak", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_dark_oak", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_dark_oak", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_dark_oak", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_dark_oak", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_dark_oak", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_dark_oak", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_dark_oak", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_dark_oak", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_cherry.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_cherry.json new file mode 100644 index 0000000000..64903ab014 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_cherry.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_cherry", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_cherry", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_cherry", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_cherry", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_cherry", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_cherry", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_cherry", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_cherry", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_cherry", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_cherry", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_cherry", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_cherry", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_cherry", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_cherry", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_cherry", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_cherry", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_cherry", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_cherry", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_cherry", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_cherry", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_cherry", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_cherry", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_cherry", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_cherry", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_dead.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_dead.json new file mode 100644 index 0000000000..fafdaf3fe5 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_dead.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_dead", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_dead", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_dead", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_dead", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_dead", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_dead", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_dead", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_dead", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_dead", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_dead", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_dead", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_dead", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_dead", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_dead", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_dead", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_dead", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_dead", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_dead", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_dead", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_dead", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_dead", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_dead", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_dead", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_dead", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_fir.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_fir.json new file mode 100644 index 0000000000..b6c3e957e0 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_fir.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_fir", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_fir", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_fir", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_fir", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_fir", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_fir", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_fir", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_fir", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_fir", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_fir", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_fir", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_fir", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_fir", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_fir", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_fir", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_fir", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_fir", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_fir", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_fir", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_fir", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_fir", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_fir", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_fir", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_fir", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_hellbark.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_hellbark.json new file mode 100644 index 0000000000..1987d02314 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_hellbark.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_hellbark", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_hellbark", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_hellbark", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_hellbark", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_hellbark", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_hellbark", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_hellbark", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_hellbark", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_hellbark", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_hellbark", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_hellbark", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_hellbark", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_hellbark", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_hellbark", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_hellbark", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_hellbark", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_hellbark", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_hellbark", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_hellbark", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_hellbark", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_hellbark", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_hellbark", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_hellbark", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_hellbark", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_jacaranda.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_jacaranda.json new file mode 100644 index 0000000000..9f4b1f4b6c --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_jacaranda.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_jacaranda", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_jacaranda", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_jacaranda", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_jacaranda", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_jacaranda", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_jacaranda", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_jacaranda", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_jacaranda", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_jacaranda", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_jacaranda", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_jacaranda", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_jacaranda", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_jacaranda", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_jacaranda", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_jacaranda", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_jacaranda", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_jacaranda", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_jacaranda", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_jacaranda", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_jacaranda", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_jacaranda", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_jacaranda", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_jacaranda", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_jacaranda", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_magic.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_magic.json new file mode 100644 index 0000000000..430d61eacc --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_magic.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_magic", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_magic", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_magic", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_magic", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_magic", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_magic", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_magic", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_magic", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_magic", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_magic", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_magic", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_magic", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_magic", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_magic", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_magic", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_magic", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_magic", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_magic", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_magic", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_magic", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_magic", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_magic", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_magic", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_magic", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_mahogany.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_mahogany.json new file mode 100644 index 0000000000..ef43f0404a --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_mahogany.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_mahogany", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_mahogany", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_mahogany", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_mahogany", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_mahogany", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_mahogany", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_mahogany", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_mahogany", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_mahogany", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_mahogany", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_mahogany", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_mahogany", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_mahogany", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_mahogany", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_mahogany", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_mahogany", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_mahogany", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_mahogany", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_mahogany", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_mahogany", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_mahogany", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_mahogany", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_mahogany", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_mahogany", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_palm.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_palm.json new file mode 100644 index 0000000000..066e91daa6 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_palm.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_palm", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_palm", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_palm", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_palm", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_palm", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_palm", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_palm", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_palm", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_palm", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_palm", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_palm", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_palm", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_palm", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_palm", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_palm", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_palm", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_palm", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_palm", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_palm", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_palm", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_palm", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_palm", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_palm", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_palm", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_redwood.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_redwood.json new file mode 100644 index 0000000000..445aa6d60f --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_redwood.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_redwood", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_redwood", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_redwood", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_redwood", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_redwood", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_redwood", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_redwood", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_redwood", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_redwood", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_redwood", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_redwood", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_redwood", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_redwood", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_redwood", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_redwood", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_redwood", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_redwood", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_redwood", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_redwood", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_redwood", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_redwood", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_redwood", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_redwood", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_redwood", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_umbran.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_umbran.json new file mode 100644 index 0000000000..fb153a7842 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_umbran.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_umbran", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_umbran", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_umbran", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_umbran", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_umbran", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_umbran", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_umbran", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_umbran", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_umbran", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_umbran", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_umbran", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_umbran", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_umbran", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_umbran", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_umbran", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_umbran", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_umbran", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_umbran", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_umbran", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_umbran", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_umbran", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_umbran", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_umbran", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_umbran", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_willow.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_willow.json new file mode 100644 index 0000000000..758c070a08 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_biomesoplenty_willow.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_willow", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_willow", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_willow", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_willow", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_willow", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_willow", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_willow", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_willow", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_willow", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_willow", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_willow", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_willow", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_willow", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_willow", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_willow", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_biomesoplenty_willow", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_willow", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_willow", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_willow", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_biomesoplenty_willow", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_willow", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_willow", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_willow", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_biomesoplenty_willow", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_birch.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_birch.json index d977daa606..f60daf66a1 100644 --- a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_birch.json +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_birch.json @@ -1,131 +1,131 @@ { "variants": { "facing=north,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_birch", "y": 0 }, "facing=east,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_birch", "y": 90 }, "facing=south,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_birch", "y": 180 }, "facing=west,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_birch", "y": 270 }, "facing=north,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_birch", "y": 0 }, "facing=east,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_birch", "y": 90 }, "facing=south,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_birch", "y": 180 }, "facing=west,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_birch", "y": 270 }, "facing=north,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_birch", "y": 0 }, "facing=east,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_birch", "y": 90 }, "facing=south,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_birch", "y": 180 }, "facing=west,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_birch", "y": 270 }, "facing=north,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_birch", "y": 0 }, "facing=east,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_birch", "y": 90 }, "facing=south,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_birch", "y": 180 }, "facing=west,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_birch", "y": 270 }, "facing=north,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_birch", "y": 0 }, "facing=east,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_birch", "y": 90 }, "facing=south,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_birch", "y": 180 }, "facing=west,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_birch", "y": 270 }, "facing=north,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_birch", "y": 0 }, "facing=east,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_birch", "y": 90 }, "facing=south,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_birch", "y": 180 }, "facing=west,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_birch", "y": 270 }, "facing=north,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_birch", "y": 0 }, "facing=east,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_birch", "y": 90 }, "facing=south,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_birch", "y": 180 }, "facing=west,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_birch", "y": 270 }, "facing=north,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_birch", "y": 0 }, "facing=east,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_birch", "y": 90 }, "facing=south,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_birch", "y": 180 }, "facing=west,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_birch", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_birch", "y": 270 } } diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_aspen.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_aspen.json new file mode 100644 index 0000000000..47fcca04fa --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_aspen.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_aspen", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_aspen", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_aspen", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_aspen", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_aspen", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_aspen", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_aspen", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_aspen", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_aspen", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_aspen", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_aspen", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_aspen", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_aspen", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_aspen", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_aspen", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_aspen", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_aspen", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_aspen", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_aspen", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_aspen", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_aspen", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_aspen", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_aspen", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_aspen", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_aspen", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_aspen", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_aspen", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_aspen", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_aspen", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_aspen", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_aspen", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_aspen", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_baobab.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_baobab.json new file mode 100644 index 0000000000..3b790430f8 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_baobab.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_baobab", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_baobab", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_baobab", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_baobab", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_baobab", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_baobab", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_baobab", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_baobab", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_baobab", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_baobab", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_baobab", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_baobab", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_baobab", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_baobab", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_baobab", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_baobab", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_baobab", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_baobab", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_baobab", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_baobab", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_baobab", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_baobab", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_baobab", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_baobab", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_baobab", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_baobab", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_baobab", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_baobab", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_baobab", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_baobab", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_baobab", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_baobab", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_blue_enchanted.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_blue_enchanted.json new file mode 100644 index 0000000000..9053c2d0c1 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_blue_enchanted.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_blue_enchanted", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_blue_enchanted", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_blue_enchanted", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_blue_enchanted", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_blue_enchanted", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_blue_enchanted", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_blue_enchanted", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_blue_enchanted", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_blue_enchanted", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_blue_enchanted", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_blue_enchanted", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_blue_enchanted", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_blue_enchanted", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_blue_enchanted", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_blue_enchanted", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_blue_enchanted", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_blue_enchanted", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_blue_enchanted", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_blue_enchanted", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_blue_enchanted", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_blue_enchanted", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_blue_enchanted", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_blue_enchanted", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_blue_enchanted", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_bulbis.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_bulbis.json new file mode 100644 index 0000000000..b72995eb5c --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_bulbis.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_bulbis", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_bulbis", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_bulbis", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_bulbis", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_bulbis", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_bulbis", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_bulbis", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_bulbis", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_bulbis", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_bulbis", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_bulbis", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_bulbis", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_bulbis", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_bulbis", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_bulbis", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_bulbis", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_bulbis", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_bulbis", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_bulbis", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_bulbis", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_bulbis", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_bulbis", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_bulbis", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_bulbis", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_bulbis", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_bulbis", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_bulbis", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_bulbis", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_bulbis", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_bulbis", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_bulbis", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_bulbis", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_cherry.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_cherry.json new file mode 100644 index 0000000000..cab8af4415 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_cherry.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cherry", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cherry", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cherry", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cherry", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cherry", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cherry", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cherry", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cherry", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cherry", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cherry", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cherry", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cherry", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cherry", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cherry", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cherry", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cherry", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cherry", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cherry", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cherry", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cherry", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cherry", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cherry", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cherry", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cherry", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cherry", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cherry", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cherry", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cherry", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cherry", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cherry", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cherry", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cherry", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_cika.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_cika.json new file mode 100644 index 0000000000..acdea3af11 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_cika.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cika", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cika", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cika", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cika", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cika", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cika", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cika", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cika", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cika", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cika", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cika", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cika", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cika", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cika", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cika", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cika", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cika", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cika", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cika", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cika", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cika", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cika", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cika", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cika", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cika", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cika", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cika", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cika", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cika", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cika", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cika", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cika", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_cypress.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_cypress.json new file mode 100644 index 0000000000..c8f25ab07d --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_cypress.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cypress", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cypress", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cypress", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cypress", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cypress", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cypress", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cypress", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cypress", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cypress", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cypress", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cypress", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cypress", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cypress", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cypress", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cypress", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cypress", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cypress", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cypress", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cypress", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_cypress", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cypress", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cypress", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cypress", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_cypress", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cypress", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cypress", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cypress", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_cypress", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cypress", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cypress", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cypress", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_cypress", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_ebony.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_ebony.json new file mode 100644 index 0000000000..fa76b767b8 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_ebony.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_ebony", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_ebony", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_ebony", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_ebony", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_ebony", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_ebony", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_ebony", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_ebony", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_ebony", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_ebony", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_ebony", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_ebony", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_ebony", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_ebony", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_ebony", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_ebony", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_ebony", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_ebony", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_ebony", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_ebony", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_ebony", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_ebony", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_ebony", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_ebony", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_ebony", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_ebony", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_ebony", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_ebony", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_ebony", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_ebony", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_ebony", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_ebony", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_embur.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_embur.json new file mode 100644 index 0000000000..86e327dfe4 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_embur.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_embur", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_embur", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_embur", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_embur", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_embur", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_embur", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_embur", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_embur", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_embur", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_embur", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_embur", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_embur", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_embur", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_embur", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_embur", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_embur", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_embur", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_embur", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_embur", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_embur", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_embur", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_embur", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_embur", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_embur", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_embur", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_embur", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_embur", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_embur", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_embur", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_embur", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_embur", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_embur", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_ether.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_ether.json new file mode 100644 index 0000000000..e0ea577a8c --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_ether.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_ether", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_ether", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_ether", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_ether", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_ether", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_ether", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_ether", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_ether", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_ether", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_ether", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_ether", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_ether", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_ether", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_ether", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_ether", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_ether", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_ether", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_ether", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_ether", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_ether", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_ether", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_ether", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_ether", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_ether", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_ether", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_ether", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_ether", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_ether", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_ether", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_ether", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_ether", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_ether", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_fir.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_fir.json new file mode 100644 index 0000000000..f1d48fa127 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_fir.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_fir", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_fir", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_fir", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_fir", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_fir", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_fir", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_fir", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_fir", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_fir", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_fir", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_fir", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_fir", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_fir", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_fir", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_fir", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_fir", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_fir", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_fir", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_fir", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_fir", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_fir", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_fir", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_fir", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_fir", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_fir", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_fir", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_fir", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_fir", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_fir", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_fir", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_fir", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_fir", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_green_enchanted.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_green_enchanted.json new file mode 100644 index 0000000000..603b37e201 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_green_enchanted.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_green_enchanted", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_green_enchanted", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_green_enchanted", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_green_enchanted", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_green_enchanted", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_green_enchanted", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_green_enchanted", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_green_enchanted", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_green_enchanted", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_green_enchanted", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_green_enchanted", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_green_enchanted", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_green_enchanted", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_green_enchanted", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_green_enchanted", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_green_enchanted", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_green_enchanted", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_green_enchanted", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_green_enchanted", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_green_enchanted", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_green_enchanted", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_green_enchanted", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_green_enchanted", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_green_enchanted", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_green_enchanted", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_green_enchanted", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_green_enchanted", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_green_enchanted", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_green_enchanted", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_green_enchanted", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_green_enchanted", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_green_enchanted", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_holly.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_holly.json new file mode 100644 index 0000000000..bdb31a09aa --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_holly.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_holly", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_holly", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_holly", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_holly", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_holly", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_holly", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_holly", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_holly", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_holly", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_holly", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_holly", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_holly", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_holly", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_holly", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_holly", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_holly", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_holly", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_holly", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_holly", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_holly", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_holly", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_holly", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_holly", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_holly", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_holly", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_holly", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_holly", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_holly", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_holly", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_holly", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_holly", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_holly", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_jacaranda.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_jacaranda.json new file mode 100644 index 0000000000..b4d040661a --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_jacaranda.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_jacaranda", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_jacaranda", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_jacaranda", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_jacaranda", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_jacaranda", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_jacaranda", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_jacaranda", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_jacaranda", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_jacaranda", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_jacaranda", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_jacaranda", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_jacaranda", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_jacaranda", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_jacaranda", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_jacaranda", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_jacaranda", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_jacaranda", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_jacaranda", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_jacaranda", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_jacaranda", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_jacaranda", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_jacaranda", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_jacaranda", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_jacaranda", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_jacaranda", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_jacaranda", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_jacaranda", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_jacaranda", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_jacaranda", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_jacaranda", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_jacaranda", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_jacaranda", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_lament.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_lament.json new file mode 100644 index 0000000000..7f69fd8cd0 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_lament.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_lament", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_lament", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_lament", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_lament", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_lament", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_lament", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_lament", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_lament", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_lament", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_lament", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_lament", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_lament", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_lament", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_lament", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_lament", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_lament", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_lament", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_lament", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_lament", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_lament", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_lament", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_lament", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_lament", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_lament", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_lament", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_lament", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_lament", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_lament", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_lament", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_lament", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_lament", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_lament", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_mahogany.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_mahogany.json new file mode 100644 index 0000000000..dc3a5aac33 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_mahogany.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_mahogany", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_mahogany", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_mahogany", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_mahogany", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_mahogany", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_mahogany", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_mahogany", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_mahogany", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_mahogany", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_mahogany", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_mahogany", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_mahogany", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_mahogany", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_mahogany", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_mahogany", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_mahogany", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_mahogany", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_mahogany", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_mahogany", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_mahogany", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_mahogany", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_mahogany", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_mahogany", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_mahogany", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_mahogany", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_mahogany", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_mahogany", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_mahogany", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_mahogany", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_mahogany", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_mahogany", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_mahogany", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_mangrove.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_mangrove.json new file mode 100644 index 0000000000..7d9ba52b40 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_mangrove.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_mangrove", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_mangrove", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_mangrove", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_mangrove", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_mangrove", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_mangrove", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_mangrove", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_mangrove", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_mangrove", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_mangrove", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_mangrove", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_mangrove", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_mangrove", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_mangrove", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_mangrove", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_mangrove", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_mangrove", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_mangrove", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_mangrove", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_mangrove", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_mangrove", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_mangrove", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_mangrove", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_mangrove", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_mangrove", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_mangrove", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_mangrove", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_mangrove", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_mangrove", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_mangrove", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_mangrove", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_mangrove", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_maple.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_maple.json new file mode 100644 index 0000000000..4f9c128a82 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_maple.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_maple", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_maple", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_maple", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_maple", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_maple", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_maple", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_maple", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_maple", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_maple", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_maple", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_maple", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_maple", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_maple", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_maple", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_maple", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_maple", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_maple", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_maple", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_maple", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_maple", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_maple", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_maple", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_maple", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_maple", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_maple", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_maple", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_maple", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_maple", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_maple", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_maple", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_maple", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_maple", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_nightshade.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_nightshade.json new file mode 100644 index 0000000000..109ef27ab9 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_nightshade.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_nightshade", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_nightshade", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_nightshade", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_nightshade", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_nightshade", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_nightshade", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_nightshade", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_nightshade", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_nightshade", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_nightshade", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_nightshade", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_nightshade", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_nightshade", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_nightshade", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_nightshade", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_nightshade", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_nightshade", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_nightshade", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_nightshade", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_nightshade", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_nightshade", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_nightshade", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_nightshade", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_nightshade", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_nightshade", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_nightshade", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_nightshade", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_nightshade", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_nightshade", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_nightshade", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_nightshade", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_nightshade", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_palm.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_palm.json new file mode 100644 index 0000000000..21138b8952 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_palm.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_palm", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_palm", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_palm", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_palm", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_palm", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_palm", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_palm", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_palm", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_palm", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_palm", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_palm", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_palm", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_palm", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_palm", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_palm", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_palm", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_palm", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_palm", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_palm", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_palm", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_palm", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_palm", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_palm", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_palm", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_palm", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_palm", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_palm", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_palm", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_palm", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_palm", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_palm", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_palm", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_pine.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_pine.json new file mode 100644 index 0000000000..244babd6ab --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_pine.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_pine", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_pine", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_pine", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_pine", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_pine", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_pine", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_pine", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_pine", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_pine", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_pine", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_pine", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_pine", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_pine", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_pine", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_pine", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_pine", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_pine", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_pine", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_pine", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_pine", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_pine", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_pine", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_pine", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_pine", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_pine", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_pine", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_pine", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_pine", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_pine", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_pine", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_pine", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_pine", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_rainbow_eucalyptus.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_rainbow_eucalyptus.json new file mode 100644 index 0000000000..3ca860f935 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_rainbow_eucalyptus.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_rainbow_eucalyptus", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_rainbow_eucalyptus", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_rainbow_eucalyptus", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_rainbow_eucalyptus", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_rainbow_eucalyptus", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_rainbow_eucalyptus", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_rainbow_eucalyptus", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_rainbow_eucalyptus", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_rainbow_eucalyptus", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_rainbow_eucalyptus", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_rainbow_eucalyptus", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_rainbow_eucalyptus", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_rainbow_eucalyptus", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_rainbow_eucalyptus", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_rainbow_eucalyptus", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_rainbow_eucalyptus", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_rainbow_eucalyptus", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_rainbow_eucalyptus", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_rainbow_eucalyptus", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_rainbow_eucalyptus", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_rainbow_eucalyptus", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_rainbow_eucalyptus", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_rainbow_eucalyptus", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_rainbow_eucalyptus", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_redwood.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_redwood.json new file mode 100644 index 0000000000..646204a90e --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_redwood.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_redwood", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_redwood", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_redwood", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_redwood", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_redwood", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_redwood", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_redwood", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_redwood", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_redwood", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_redwood", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_redwood", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_redwood", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_redwood", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_redwood", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_redwood", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_redwood", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_redwood", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_redwood", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_redwood", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_redwood", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_redwood", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_redwood", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_redwood", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_redwood", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_redwood", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_redwood", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_redwood", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_redwood", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_redwood", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_redwood", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_redwood", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_redwood", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_skyris.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_skyris.json new file mode 100644 index 0000000000..ec9e79a8c2 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_skyris.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_skyris", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_skyris", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_skyris", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_skyris", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_skyris", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_skyris", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_skyris", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_skyris", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_skyris", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_skyris", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_skyris", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_skyris", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_skyris", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_skyris", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_skyris", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_skyris", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_skyris", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_skyris", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_skyris", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_skyris", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_skyris", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_skyris", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_skyris", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_skyris", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_skyris", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_skyris", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_skyris", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_skyris", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_skyris", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_skyris", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_skyris", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_skyris", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_willow.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_willow.json new file mode 100644 index 0000000000..0822d11d35 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_willow.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_willow", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_willow", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_willow", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_willow", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_willow", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_willow", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_willow", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_willow", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_willow", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_willow", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_willow", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_willow", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_willow", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_willow", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_willow", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_willow", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_willow", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_willow", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_willow", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_willow", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_willow", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_willow", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_willow", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_willow", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_willow", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_willow", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_willow", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_willow", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_willow", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_willow", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_willow", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_willow", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_witch_hazel.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_witch_hazel.json new file mode 100644 index 0000000000..fe5a0304b4 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_witch_hazel.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_witch_hazel", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_witch_hazel", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_witch_hazel", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_witch_hazel", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_witch_hazel", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_witch_hazel", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_witch_hazel", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_witch_hazel", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_witch_hazel", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_witch_hazel", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_witch_hazel", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_witch_hazel", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_witch_hazel", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_witch_hazel", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_witch_hazel", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_witch_hazel", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_witch_hazel", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_witch_hazel", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_witch_hazel", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_witch_hazel", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_witch_hazel", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_witch_hazel", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_witch_hazel", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_witch_hazel", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_witch_hazel", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_witch_hazel", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_witch_hazel", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_witch_hazel", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_witch_hazel", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_witch_hazel", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_witch_hazel", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_witch_hazel", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_zelkova.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_zelkova.json new file mode 100644 index 0000000000..11fecdf4f4 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_byg_zelkova.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_zelkova", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_zelkova", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_zelkova", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_zelkova", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_zelkova", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_zelkova", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_zelkova", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_zelkova", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_zelkova", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_zelkova", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_zelkova", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_zelkova", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_zelkova", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_zelkova", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_zelkova", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_zelkova", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_zelkova", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_zelkova", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_zelkova", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_byg_zelkova", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_zelkova", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_zelkova", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_zelkova", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_byg_zelkova", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_zelkova", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_zelkova", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_zelkova", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_byg_zelkova", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_zelkova", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_zelkova", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_zelkova", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_byg_zelkova", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_crimson.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_crimson.json new file mode 100644 index 0000000000..6ed65d30a5 --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_crimson.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_crimson", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_crimson", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_crimson", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_crimson", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_crimson", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_crimson", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_crimson", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_crimson", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_crimson", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_crimson", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_crimson", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_crimson", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_crimson", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_crimson", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_crimson", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_crimson", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_crimson", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_crimson", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_crimson", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_crimson", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_crimson", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_crimson", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_crimson", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_crimson", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_crimson", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_crimson", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_crimson", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_crimson", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_crimson", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_crimson", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_crimson", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_crimson", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_immersiveengineering_treated_wood.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_immersiveengineering_treated_wood.json index 05cbe1a00f..6c41db5ff9 100644 --- a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_immersiveengineering_treated_wood.json @@ -1,131 +1,131 @@ { "variants": { "facing=north,type=single,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_single_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood", "y": 0 }, "facing=east,type=single,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_single_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood", "y": 90 }, "facing=south,type=single,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_single_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood", "y": 180 }, "facing=west,type=single,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_single_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood", "y": 270 }, "facing=north,type=middle,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_middle_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_immersiveengineering_treated_wood", "y": 0 }, "facing=east,type=middle,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_middle_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_immersiveengineering_treated_wood", "y": 90 }, "facing=south,type=middle,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_middle_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_immersiveengineering_treated_wood", "y": 180 }, "facing=west,type=middle,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_middle_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_immersiveengineering_treated_wood", "y": 270 }, "facing=north,type=right,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_right_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_immersiveengineering_treated_wood", "y": 0 }, "facing=east,type=right,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_right_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_immersiveengineering_treated_wood", "y": 90 }, "facing=south,type=right,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_right_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_immersiveengineering_treated_wood", "y": 180 }, "facing=west,type=right,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_right_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_immersiveengineering_treated_wood", "y": 270 }, "facing=north,type=left,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_left_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_immersiveengineering_treated_wood", "y": 0 }, "facing=east,type=left,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_left_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_immersiveengineering_treated_wood", "y": 90 }, "facing=south,type=left,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_left_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_immersiveengineering_treated_wood", "y": 180 }, "facing=west,type=left,waterlogged=true": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_left_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_immersiveengineering_treated_wood", "y": 270 }, "facing=north,type=single,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_single_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood", "y": 0 }, "facing=east,type=single,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_single_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood", "y": 90 }, "facing=south,type=single,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_single_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood", "y": 180 }, "facing=west,type=single,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_single_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood", "y": 270 }, "facing=north,type=middle,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_middle_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_immersiveengineering_treated_wood", "y": 0 }, "facing=east,type=middle,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_middle_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_immersiveengineering_treated_wood", "y": 90 }, "facing=south,type=middle,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_middle_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_immersiveengineering_treated_wood", "y": 180 }, "facing=west,type=middle,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_middle_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_immersiveengineering_treated_wood", "y": 270 }, "facing=north,type=right,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_right_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_immersiveengineering_treated_wood", "y": 0 }, "facing=east,type=right,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_right_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_immersiveengineering_treated_wood", "y": 90 }, "facing=south,type=right,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_right_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_immersiveengineering_treated_wood", "y": 180 }, "facing=west,type=right,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_right_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_immersiveengineering_treated_wood", "y": 270 }, "facing=north,type=left,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_left_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_immersiveengineering_treated_wood", "y": 0 }, "facing=east,type=left,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_left_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_immersiveengineering_treated_wood", "y": 90 }, "facing=south,type=left,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_left_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_immersiveengineering_treated_wood", "y": 180 }, "facing=west,type=left,waterlogged=false": { - "model": "ironagefurniture:chair_wood_ironage_bench_padded_left_immersiveengineering_treated_wood", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_immersiveengineering_treated_wood", "y": 270 } } diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_jungle.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_jungle.json index a419b186d8..7cf9a755e5 100644 --- a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_jungle.json +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_jungle.json @@ -1,131 +1,131 @@ { "variants": { "facing=north,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_jungle", "y": 0 }, "facing=east,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_jungle", "y": 90 }, "facing=south,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_jungle", "y": 180 }, "facing=west,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_jungle", "y": 270 }, "facing=north,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_jungle", "y": 0 }, "facing=east,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_jungle", "y": 90 }, "facing=south,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_jungle", "y": 180 }, "facing=west,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_jungle", "y": 270 }, "facing=north,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_jungle", "y": 0 }, "facing=east,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_jungle", "y": 90 }, "facing=south,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_jungle", "y": 180 }, "facing=west,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_jungle", "y": 270 }, "facing=north,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_jungle", "y": 0 }, "facing=east,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_jungle", "y": 90 }, "facing=south,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_jungle", "y": 180 }, "facing=west,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_jungle", "y": 270 }, "facing=north,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_jungle", "y": 0 }, "facing=east,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_jungle", "y": 90 }, "facing=south,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_jungle", "y": 180 }, "facing=west,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_jungle", "y": 270 }, "facing=north,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_jungle", "y": 0 }, "facing=east,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_jungle", "y": 90 }, "facing=south,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_jungle", "y": 180 }, "facing=west,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_jungle", "y": 270 }, "facing=north,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_jungle", "y": 0 }, "facing=east,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_jungle", "y": 90 }, "facing=south,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_jungle", "y": 180 }, "facing=west,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_jungle", "y": 270 }, "facing=north,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_jungle", "y": 0 }, "facing=east,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_jungle", "y": 90 }, "facing=south,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_jungle", "y": 180 }, "facing=west,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_jungle", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_jungle", "y": 270 } } diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_oak.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_oak.json index c8de5378d8..174055d71f 100644 --- a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_oak.json +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_oak.json @@ -1,131 +1,131 @@ { "variants": { "facing=north,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_oak", "y": 0 }, "facing=east,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_oak", "y": 90 }, "facing=south,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_oak", "y": 180 }, "facing=west,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_oak", "y": 270 }, "facing=north,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_oak", "y": 0 }, "facing=east,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_oak", "y": 90 }, "facing=south,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_oak", "y": 180 }, "facing=west,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_oak", "y": 270 }, "facing=north,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_oak", "y": 0 }, "facing=east,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_oak", "y": 90 }, "facing=south,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_oak", "y": 180 }, "facing=west,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_oak", "y": 270 }, "facing=north,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_oak", "y": 0 }, "facing=east,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_oak", "y": 90 }, "facing=south,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_oak", "y": 180 }, "facing=west,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_oak", "y": 270 }, "facing=north,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_oak", "y": 0 }, "facing=east,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_oak", "y": 90 }, "facing=south,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_oak", "y": 180 }, "facing=west,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_oak", "y": 270 }, "facing=north,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_oak", "y": 0 }, "facing=east,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_oak", "y": 90 }, "facing=south,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_oak", "y": 180 }, "facing=west,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_oak", "y": 270 }, "facing=north,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_oak", "y": 0 }, "facing=east,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_oak", "y": 90 }, "facing=south,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_oak", "y": 180 }, "facing=west,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_oak", "y": 270 }, "facing=north,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_oak", "y": 0 }, "facing=east,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_oak", "y": 90 }, "facing=south,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_oak", "y": 180 }, "facing=west,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_oak", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_oak", "y": 270 } } diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_spruce.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_spruce.json index 87cc18069e..aefb10d1fc 100644 --- a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_spruce.json +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_spruce.json @@ -1,131 +1,131 @@ { "variants": { "facing=north,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_spruce", "y": 0 }, "facing=east,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_spruce", "y": 90 }, "facing=south,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_spruce", "y": 180 }, "facing=west,type=single,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_spruce", "y": 270 }, "facing=north,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_spruce", "y": 0 }, "facing=east,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_spruce", "y": 90 }, "facing=south,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_spruce", "y": 180 }, "facing=west,type=middle,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_spruce", "y": 270 }, "facing=north,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_spruce", "y": 0 }, "facing=east,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_spruce", "y": 90 }, "facing=south,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_spruce", "y": 180 }, "facing=west,type=right,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_spruce", "y": 270 }, "facing=north,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_spruce", "y": 0 }, "facing=east,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_spruce", "y": 90 }, "facing=south,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_spruce", "y": 180 }, "facing=west,type=left,waterlogged=true": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_spruce", "y": 270 }, "facing=north,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_spruce", "y": 0 }, "facing=east,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_spruce", "y": 90 }, "facing=south,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_spruce", "y": 180 }, "facing=west,type=single,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_single_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_spruce", "y": 270 }, "facing=north,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_spruce", "y": 0 }, "facing=east,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_spruce", "y": 90 }, "facing=south,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_spruce", "y": 180 }, "facing=west,type=middle,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_middle_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_spruce", "y": 270 }, "facing=north,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_spruce", "y": 0 }, "facing=east,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_spruce", "y": 90 }, "facing=south,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_spruce", "y": 180 }, "facing=west,type=right,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_right_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_spruce", "y": 270 }, "facing=north,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_spruce", "y": 0 }, "facing=east,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_spruce", "y": 90 }, "facing=south,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_spruce", "y": 180 }, "facing=west,type=left,waterlogged=false": { - "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_left_spruce", + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_spruce", "y": 270 } } diff --git a/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_warped.json b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_warped.json new file mode 100644 index 0000000000..5badda37aa --- /dev/null +++ b/src/main/resources/assets/ironagefurniture/blockstates/chair_wood_ironage_bench_padded_single_warped.json @@ -0,0 +1,132 @@ +{ + "variants": { + "facing=north,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_warped", + "y": 0 + }, + "facing=east,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_warped", + "y": 90 + }, + "facing=south,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_warped", + "y": 180 + }, + "facing=west,type=single,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_warped", + "y": 270 + }, + "facing=north,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_warped", + "y": 0 + }, + "facing=east,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_warped", + "y": 90 + }, + "facing=south,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_warped", + "y": 180 + }, + "facing=west,type=middle,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_warped", + "y": 270 + }, + "facing=north,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_warped", + "y": 0 + }, + "facing=east,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_warped", + "y": 90 + }, + "facing=south,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_warped", + "y": 180 + }, + "facing=west,type=right,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_warped", + "y": 270 + }, + "facing=north,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_warped", + "y": 0 + }, + "facing=east,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_warped", + "y": 90 + }, + "facing=south,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_warped", + "y": 180 + }, + "facing=west,type=left,waterlogged=true": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_warped", + "y": 270 + }, + "facing=north,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_warped", + "y": 0 + }, + "facing=east,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_warped", + "y": 90 + }, + "facing=south,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_warped", + "y": 180 + }, + "facing=west,type=single,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_single_warped", + "y": 270 + }, + "facing=north,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_warped", + "y": 0 + }, + "facing=east,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_warped", + "y": 90 + }, + "facing=south,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_warped", + "y": 180 + }, + "facing=west,type=middle,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_middle_warped", + "y": 270 + }, + "facing=north,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_warped", + "y": 0 + }, + "facing=east,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_warped", + "y": 90 + }, + "facing=south,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_warped", + "y": 180 + }, + "facing=west,type=right,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_right_warped", + "y": 270 + }, + "facing=north,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_warped", + "y": 0 + }, + "facing=east,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_warped", + "y": 90 + }, + "facing=south,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_warped", + "y": 180 + }, + "facing=west,type=left,waterlogged=false": { + "model": "ironagefurniture:block/chair_wood_ironage_bench_padded_red_left_warped", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_back_padded_middle_immersiveengineering_treated_wood.json b/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_back_padded_middle_immersiveengineering_treated_wood.json index d45c0dbc29..e79cc06e3d 100644 --- a/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_back_padded_middle_immersiveengineering_treated_wood.json +++ b/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_back_padded_middle_immersiveengineering_treated_wood.json @@ -1,10 +1,10 @@ { "credit": "Made with Blockbench", "textures": { - "0": "immersiveengineering:block/treated_wood_packaged", - "1": "immersiveengineering:block/treated_wood_vertical", + "0": "immersiveengineering:block/wooden_decoration/treated_wood_packaged", + "1": "immersiveengineering:block/wooden_decoration/treated_wood_vertical", "2": "minecraft:blocks/wool_colored_red", - "particle": "immersiveengineering:block/treated_wood_packaged" + "particle": "immersiveengineering:block/wooden_decoration/treated_wood_packaged" }, "elements": [ { @@ -385,4 +385,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_log_left_immersiveengineering_treated_wood.json b/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_log_left_immersiveengineering_treated_wood.json index ec693accdf..e4f6ef5f9f 100644 --- a/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_log_left_immersiveengineering_treated_wood.json +++ b/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_log_left_immersiveengineering_treated_wood.json @@ -2,6 +2,6 @@ "parent": "ironagefurniture:block/template_chair_wood_ironage_bench_log_left", "textures": { "log": "immersiveengineering:block/wooden_decoration/treated_wood_packaged", - "logtop": "immersiveengineering:block/log_top" + "logtop": "immersiveengineering:block/wooden_decoration/treated_wood_packaged" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_log_middle_immersiveengineering_treated_wood.json b/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_log_middle_immersiveengineering_treated_wood.json index 07d2f07e47..762fdeabfa 100644 --- a/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_log_middle_immersiveengineering_treated_wood.json +++ b/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_log_middle_immersiveengineering_treated_wood.json @@ -2,6 +2,6 @@ "parent": "ironagefurniture:block/template_chair_wood_ironage_bench_log_middle", "textures": { "log": "immersiveengineering:block/wooden_decoration/treated_wood_packaged", - "logtop": "immersiveengineering:block/log_top" + "logtop": "immersiveengineering:block/wooden_decoration/treated_wood_packaged" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_log_right_immersiveengineering_treated_wood.json b/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_log_right_immersiveengineering_treated_wood.json index 85a4468342..b4bf6c7c6c 100644 --- a/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_log_right_immersiveengineering_treated_wood.json +++ b/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_log_right_immersiveengineering_treated_wood.json @@ -2,6 +2,6 @@ "parent": "ironagefurniture:block/template_chair_wood_ironage_bench_log_right", "textures": { "log": "immersiveengineering:block/wooden_decoration/treated_wood_packaged", - "logtop": "immersiveengineering:block/log_top" + "logtop": "immersiveengineering:block/wooden_decoration/treated_wood_packaged" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_log_single_immersiveengineering_treated_wood.json b/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_log_single_immersiveengineering_treated_wood.json index 0850fe07a9..48842b28e8 100644 --- a/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_log_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_log_single_immersiveengineering_treated_wood.json @@ -2,6 +2,6 @@ "parent": "ironagefurniture:block/template_chair_wood_ironage_bench_log_single", "textures": { "log": "immersiveengineering:block/wooden_decoration/treated_wood_packaged", - "logtop": "immersiveengineering:block/log_top" + "logtop": "immersiveengineering:block/wooden_decoration/treated_wood_packaged" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_padded_left_immersiveengineering_treated_wood.json b/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_padded_left_immersiveengineering_treated_wood.json index b62d962dc3..f012b87773 100644 --- a/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_padded_left_immersiveengineering_treated_wood.json +++ b/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_padded_left_immersiveengineering_treated_wood.json @@ -1,10 +1,10 @@ { "credit": "Made with Blockbench", "textures": { - "0": "immersiveengineering:block/treated_wood_packaged", - "1": "immersiveengineering:block/treated_wood_vertical", + "0": "immersiveengineering:block/wooden_decoration/treated_wood_packaged", + "1": "immersiveengineering:block/wooden_decoration/treated_wood_vertical", "2": "minecraft:blocks/wool_colored_red", - "particle": "immersiveengineering:block/treated_wood_packaged" + "particle": "immersiveengineering:block/wooden_decoration/treated_wood_packaged" }, "elements": [ { @@ -793,4 +793,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_padded_middle_immersiveengineering_treated_wood.json b/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_padded_middle_immersiveengineering_treated_wood.json index a1274ddda3..8a9aea1055 100644 --- a/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_padded_middle_immersiveengineering_treated_wood.json +++ b/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_padded_middle_immersiveengineering_treated_wood.json @@ -1,9 +1,9 @@ { "credit": "Made with Blockbench", "textures": { - "0": "immersiveengineering:block/treated_wood_packaged", + "0": "immersiveengineering:block/wooden_decoration/treated_wood_packaged", "2": "minecraft:blocks/wool_colored_red", - "particle": "immersiveengineering:block/treated_wood_packaged" + "particle": "immersiveengineering:block/wooden_decoration/treated_wood_packaged" }, "elements": [ { @@ -236,4 +236,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_padded_right_immersiveengineering_treated_wood.json b/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_padded_right_immersiveengineering_treated_wood.json index 5fa01c2c0c..e68742050e 100644 --- a/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_padded_right_immersiveengineering_treated_wood.json +++ b/src/main/resources/assets/ironagefurniture/models/block/chair_wood_ironage_bench_padded_right_immersiveengineering_treated_wood.json @@ -2,9 +2,9 @@ "credit": "Made with Blockbench", "textures": { "3": "minecraft:blocks/wool_colored_red", - "4": "immersiveengineering:block/treated_wood_packaged", - "5": "immersiveengineering:block/treated_wood_vertical", - "particle": "immersiveengineering:block/treated_wood_packaged" + "4": "immersiveengineering:block/wooden_decoration/treated_wood_packaged", + "5": "immersiveengineering:block/wooden_decoration/treated_wood_vertical", + "particle": "immersiveengineering:block/wooden_decoration/treated_wood_packaged" }, "elements": [ { @@ -793,4 +793,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/assets/ironagefurniture/models/block/obsidian_chunk.json b/src/main/resources/assets/ironagefurniture/models/block/obsidian_chunk.json index 871a4d39b6..71282bd194 100644 --- a/src/main/resources/assets/ironagefurniture/models/block/obsidian_chunk.json +++ b/src/main/resources/assets/ironagefurniture/models/block/obsidian_chunk.json @@ -1,7 +1,8 @@ { "credit": "Made by FoxNekitsune", "textures": { - "0": "minecraft:block/obsidian" + "0": "minecraft:block/obsidian", + "particle": "minecraft:block/obsidian" }, "elements": [ { @@ -34,10 +35,12 @@ "translation": [0, 4, 0] }, "gui": { - "translation": [-1, 13, 0], + "rotation": [35, 45, 0], + "translation": [0.5, 10.5, 0], "scale": [2, 2, 2] }, "fixed": { + "rotation": [0, 55, 0], "translation": [0, 7, 0] } } diff --git a/src/main/resources/coremods/ironagefurniture_legacy_world_fix.js b/src/main/resources/coremods/ironagefurniture_legacy_world_fix.js new file mode 100644 index 0000000000..cf4a8487b3 --- /dev/null +++ b/src/main/resources/coremods/ironagefurniture_legacy_world_fix.js @@ -0,0 +1,106 @@ +var ASMAPI = Java.type('net.minecraftforge.coremod.api.ASMAPI'); +var Opcodes = Java.type('org.objectweb.asm.Opcodes'); +var InsnList = Java.type('org.objectweb.asm.tree.InsnList'); +var MethodInsnNode = Java.type('org.objectweb.asm.tree.MethodInsnNode'); +var VarInsnNode = Java.type('org.objectweb.asm.tree.VarInsnNode'); + +function initializeCoreMod() { + return { + 'ironagefurniture_legacy_level_data': { + 'target': { + 'type': 'CLASS', + 'name': 'net.minecraft.world.level.storage.LevelStorageSource' + }, + 'transformer': function(classNode) { + for (var methodIndex = 0; methodIndex < classNode.methods.size(); ++methodIndex) { + var method = classNode.methods.get(methodIndex); + for (var instruction = method.instructions.getFirst(); instruction !== null; + instruction = instruction.getNext()) { + if (!(instruction instanceof MethodInsnNode) + || instruction.getOpcode() !== Opcodes.INVOKESTATIC + || instruction.owner !== 'net/minecraft/nbt/NbtIo' + || instruction.desc !== '(Ljava/io/File;)Lnet/minecraft/nbt/CompoundTag;') { + continue; + } + + var storedRoot = instruction.getNext(); + var loadedFile = instruction.getPrevious(); + if (!(storedRoot instanceof VarInsnNode) || storedRoot.getOpcode() !== Opcodes.ASTORE) { + continue; + } + if (!(loadedFile instanceof VarInsnNode) || loadedFile.getOpcode() !== Opcodes.ALOAD) { + continue; + } + + var capture = new InsnList(); + capture.add(new VarInsnNode(Opcodes.ALOAD, loadedFile.var)); + capture.add(new VarInsnNode(Opcodes.ALOAD, storedRoot.var)); + capture.add(new MethodInsnNode( + Opcodes.INVOKESTATIC, + 'zone/moddev/mc/ironagefurniture/migration/LegacyWorldDataHook', + 'captureLegacyWorld', + '(Ljava/io/File;Lnet/minecraft/nbt/CompoundTag;)V', + false)); + method.instructions.insert(storedRoot, capture); + break; + } + } + return classNode; + } + }, + 'ironagefurniture_legacy_chunk_data': { + 'target': { + 'type': 'CLASS', + 'name': 'net.minecraft.world.level.chunk.storage.ChunkStorage' + }, + 'transformer': function(classNode) { + for (var methodIndex = 0; methodIndex < classNode.methods.size(); ++methodIndex) { + var method = classNode.methods.get(methodIndex); + if (method.desc !== '(Lnet/minecraft/resources/ResourceKey;Ljava/util/function/Supplier;Lnet/minecraft/nbt/CompoundTag;Ljava/util/Optional;)Lnet/minecraft/nbt/CompoundTag;') { + continue; + } + + var prefix = new InsnList(); + prefix.add(new VarInsnNode(Opcodes.ALOAD, 3)); + prefix.add(new MethodInsnNode( + Opcodes.INVOKESTATIC, + 'zone/moddev/mc/ironagefurniture/migration/LegacyWorldDataHook', + 'prepareLegacyChunk', + '(Lnet/minecraft/nbt/CompoundTag;)V', + false)); + method.instructions.insert(prefix); + + for (var instruction = method.instructions.getFirst(); instruction !== null; + instruction = instruction.getNext()) { + if (instruction.getOpcode() === Opcodes.ARETURN) { + method.instructions.insertBefore(instruction, new MethodInsnNode( + Opcodes.INVOKESTATIC, + 'zone/moddev/mc/ironagefurniture/migration/LegacyWorldDataHook', + 'finalizeLegacyChunk', + '(Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag;', + false)); + } + } + } + return classNode; + } + }, + 'ironagefurniture_expand_legacy_block_states': { + 'target': { + 'type': 'CLASS', + 'name': 'net.minecraft.util.datafix.fixes.BlockStateData' + }, + 'transformer': function(classNode) { + var mappedName = ASMAPI.mapField('f_14934_'); + for (var fieldIndex = 0; fieldIndex < classNode.fields.size(); ++fieldIndex) { + var field = classNode.fields.get(fieldIndex); + if (field.desc === '[Lcom/mojang/serialization/Dynamic;' + && (field.name === mappedName || field.name === 'MAP' || field.name === 'f_14934_')) { + field.access = field.access & ~Opcodes.ACC_FINAL; + } + } + return classNode; + } + } + }; +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_acacia.json index 0eaee8905e..790fa8fdb6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_acacia.json @@ -1,24 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_acacia" - ] - }, - "criteria": { - "has_wood": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_acacia" + ] + }, + "criteria": { + "has_wood": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_acacia" + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wood" ] - } - } - }, - "requirements": [ - [ - "has_wood" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_cherry.json index 08eeaa96c3..1ba150a88c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_dead.json index c7ec44da00..d0c8ccc031 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_fir.json index 20a124a3dd..835991fb30 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_hellbark.json index 535bdab0d9..f8be40d64e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_jacaranda.json index c24f6d4ae6..008064cbfb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_magic.json index 17f88c9fe1..f14d9fb327 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_mahogany.json index fd377dc042..db11b448bb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_palm.json index 6cbd1bf0c7..4c7c789068 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_redwood.json index 6abc3d72ef..4643a324ff 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_umbran.json index 8b4e924085..c12a7a2fc9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_willow.json index a6e2baf9cc..604a2ccca1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_birch.json index 949175baf3..b5b1efb3f5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_aspen.json index 81c12c296a..ce0ca38511 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_baobab.json index 508af15afa..bd758474cd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_blue_enchanted.json index 1c04c2ff7f..202fca738b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_bulbis.json index 43b74d2dbf..5093071fb1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_cherry.json index 781fa3c6e2..b1c4d58840 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_cika.json index d2331ff865..9cec8b883e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_cypress.json index 6603605dd6..b4667aa023 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_ebony.json index 744a4f7880..7ceb49a308 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_embur.json index 874dd9e096..4c6c69f948 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_ether.json index f095748b7c..911ea89c96 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_fir.json index 244087ea48..5eebfad033 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_glacial_oak.json deleted file mode 100644 index ba4f5abf5e..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_green_enchanted.json index 2612b4b78f..783bc11800 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_holly.json index 12467ae885..102dc19be5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_ironwood.json deleted file mode 100644 index 8bb160188b..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_jacaranda.json index c107104478..1f84110cc2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_lament.json index faaa29f521..c36425ad63 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_mahogany.json index 9762dc0646..4ccd38ead9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_mangrove.json index d24685d3ff..4003d679b9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_maple.json index b2b60e05f5..0644674eac 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_nightshade.json index f8d8a5a36b..24e0accb67 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_palm.json index 8eaa2cdfa5..71dfd17110 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_pine.json index 99c2ff949c..2f04d3e4dc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_rainbow_eucalyptus.json index de85337c63..7682338b16 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_redwood.json index 80be4cce02..a01a04fb77 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_skyris.json index a70846fd4e..714eab21d1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_willow.json index 940f3553c6..4eecc1d842 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_witch_hazel.json index 610c56a383..c6b406bead 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_zelkova.json index 9d000e1a62..4ba1bc9ce8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_crimson.json index ed46f8d829..57ef24b5b6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_dark_oak.json index d95d0e221a..3aab360f26 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_immersiveengineering_treated_wood.json index 42b40cef94..38895df355 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_jungle.json index 70f4f79a1e..3cbe17e70d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_oak.json index 9845c75295..94a0d25d05 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_spruce.json index 5ec35f6ffa..31746d3102 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_warped.json index ba128432d1..487578c521 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_black_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_acacia.json index 8d5e68d130..949f3254ce 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_cherry.json index 5ccfe7700f..dfecfcaf78 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_dead.json index def59da47d..5c7b50d648 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_fir.json index b9f4eb746f..2bff3657ff 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_hellbark.json index 27bb15c15e..7ed9d243be 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_jacaranda.json index c9666f1bd1..9fc0a78144 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_magic.json index 932f685f50..ce08d0eea4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_mahogany.json index c4eba7bba5..4eb67ecf8f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_palm.json index 49ad9aca65..c8f06da1e7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_redwood.json index a094991197..b5aa8b2c07 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_umbran.json index 2ec76353e1..8f0bbf578d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_willow.json index f77ff64960..941167e6c7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_birch.json index aa6c341f85..24202a4484 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_aspen.json index 058f5b0958..a61c41a6fe 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_baobab.json index 08515cfb87..7904bc0ffd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_blue_enchanted.json index bf69705f1c..a8c2295838 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_bulbis.json index 417d9042c5..f7fc246b6c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_cherry.json index 51ad513d36..6c85e7d3f7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_cika.json index dfc62c212c..174be33771 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_cypress.json index 536f0129c9..298165b261 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_ebony.json index 1128b7aa8d..cb462f2ac1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_embur.json index 14d8597f20..ee0ddfd9bb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_ether.json index 5fd9434c1b..bd5c1b16c5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_fir.json index 88b1d102e6..05940fbc15 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_glacial_oak.json deleted file mode 100644 index faf7887f71..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_green_enchanted.json index 188f9906c9..4d1ebf06c4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_holly.json index 0b4b3c17cc..2f576d0b2c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_ironwood.json deleted file mode 100644 index 0ba3f0e7a0..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_jacaranda.json index 3b96a128c4..525c4df13c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_lament.json index 7b86139752..c8b3a749f8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_mahogany.json index 35204b5c91..eee9f33115 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_mangrove.json index 3db04b30ad..1f58a72654 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_maple.json index 23129be23e..95926b744a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_nightshade.json index 7354cb6897..60cbac9350 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_palm.json index 222227774d..2c8cd98bdd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_pine.json index e937ee7d81..c2ec53fd69 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_rainbow_eucalyptus.json index e0ac172e4a..c04a959550 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_redwood.json index bcf2d29aeb..1477c284fa 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_skyris.json index 45738c9056..e2ee8ee0c4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_willow.json index 921eeb4781..eb97f3a0b9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_witch_hazel.json index 9c740b55be..1015873485 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_zelkova.json index 8057dece33..0bf81b4770 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_crimson.json index f1d366f04f..eb4a41a9e5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_dark_oak.json index d2a8de0308..21ed56721a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_immersiveengineering_treated_wood.json index 3a58c0cd55..4af63d27a4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_jungle.json index 9222eaf582..b2d32304b3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_oak.json index b8f9142944..da219c4a47 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_spruce.json index 154d8535eb..555b99ce72 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_warped.json index a4c2408b3b..127b2ed112 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_blue_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_acacia.json index 4a30e47a7f..55e60473ab 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_cherry.json index f95b77fae5..4fc08c9bd2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_dead.json index 29d2686f12..b29fb36b17 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_fir.json index 823c6d93f1..8c93e5cfdc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_hellbark.json index 67cfe5798d..41d2c659ed 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_jacaranda.json index 876df18af6..3d8208cf58 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_magic.json index 88052f031a..cda3e32df8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_mahogany.json index 7863ca14e0..435f575cb9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_palm.json index 93ef87a9a0..22ed9b0ec0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_redwood.json index 9d6e08ba96..b608f88652 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_umbran.json index 5888931cfb..1987cd0c72 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_willow.json index f57613f5d4..c8627b766a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_birch.json index 0ab9dba60b..9d19098388 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_aspen.json index 808ce22899..6653941e9a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_baobab.json index f3e599befe..bc128ddd13 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_blue_enchanted.json index 941f39f646..d36d11d7c2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_bulbis.json index b3073f14b2..c548f2b25f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_cherry.json index 5f8eb7d364..6731d71d2e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_cika.json index bce8456f94..c320d4e043 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_cypress.json index b710091262..99bd300ab3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_ebony.json index ab9110d019..c2a782d911 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_embur.json index 0986c4f410..ee0eb794fd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_ether.json index aab888a3a3..7d40ebeb77 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_fir.json index 067bb02a2f..c650bab19b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_glacial_oak.json deleted file mode 100644 index 2ccc02fa59..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_green_enchanted.json index 15b04250d5..3226874c00 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_holly.json index 965e07cdd3..ebc8d36a5a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_ironwood.json deleted file mode 100644 index ed28c2dedf..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_jacaranda.json index f7879b0dc7..46970e6de1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_lament.json index 584498ba4b..341d6132b6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_mahogany.json index ca563e00f3..d781376b1c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_mangrove.json index d7b5f2267d..ddf9367cf5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_maple.json index 861c3d7847..9f9b051a34 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_nightshade.json index 107575d3ac..77513e1528 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_palm.json index 17925c15ff..1352b367b3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_pine.json index fcd8a44bb3..ca747161ea 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_rainbow_eucalyptus.json index eb3dca2c90..252f302866 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_redwood.json index c196e57cfa..30a9f67bd5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_skyris.json index ee06b5828c..925e62cb8b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_willow.json index 6e0ac11226..9f442ddebb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_witch_hazel.json index 06f2b27bb6..9b51894172 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_zelkova.json index fdf6e30184..4e8bef6f35 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_crimson.json index caee9424c6..70cf413a07 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_dark_oak.json index 110ef82b8e..8d57beacf5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_immersiveengineering_treated_wood.json index 97608a86a3..02c6343bc7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_jungle.json index 8c378fb044..fe854da905 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_oak.json index 01121438b3..7edfc1e990 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_spruce.json index c445482a02..a0c4dad4da 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_warped.json index 2f34ff268f..01cb5072bd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_brown_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_acacia.json index 029903e459..8d541374bf 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_cherry.json index 1bee8aa2f0..750c474d80 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_dead.json index ae37fb6e00..a3e37d4be5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_fir.json index 93c8b03417..82bfe065b2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_hellbark.json index e0445b4796..cc37229411 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_jacaranda.json index ac56d95321..f5e2c5593b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_magic.json index d07f2b4fdc..e46baee378 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_mahogany.json index 504a7649d7..ce3d5d4cc3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_palm.json index 3034bd64ba..e42515ef5a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_redwood.json index 0431b789b5..839e28af58 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_umbran.json index c49df175d9..3bd87cd948 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_willow.json index d5fb3e5e69..eb71d1f654 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_birch.json index 5a962e1e2a..1011c3e72f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_aspen.json index 344b810cec..c0fb5dffe4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_baobab.json index 32fb05db20..c5fa096d05 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_blue_enchanted.json index acc635c763..60806bcbf9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_bulbis.json index f82cf44ee6..2db105aec4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_cherry.json index 6a2ec589a5..fe491663ce 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_cika.json index e9b2f673c6..9f7f463ac1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_cypress.json index 7427d0dc44..0aab95642c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_ebony.json index 5a5265c95a..f8476ae20d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_embur.json index 53052d1c6e..97afdbf5db 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_ether.json index 31fff726da..bc3f8eb390 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_fir.json index 2d5928d25e..13aaddd55f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_glacial_oak.json deleted file mode 100644 index 95ae160a91..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_green_enchanted.json index 4aba23ba9b..327dd247dc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_holly.json index 21721ee8f7..33dc8a3649 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_ironwood.json deleted file mode 100644 index 2436d97437..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_jacaranda.json index 208a7147ba..77ec70f02d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_lament.json index f31973c5c1..dca24e52bd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_mahogany.json index 5aa0caefed..6c6e8afd68 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_mangrove.json index 0cc827c3d9..e26aabb9af 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_maple.json index 40ffc8868b..8739d4b588 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_nightshade.json index ae76340052..e002f7561f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_palm.json index bbcf42b1f1..0fcfa17c3d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_pine.json index e5bdcf1b5d..718fda6cc4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_rainbow_eucalyptus.json index 65d6c1f9db..4e6fd394ac 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_redwood.json index 366ae63ddc..1b1b6e9ac4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_skyris.json index 17749840ca..744cc7c1c1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_willow.json index 1c655eb9ee..61ee1e5ebf 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_witch_hazel.json index cd4c2dab53..983548e9b7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_zelkova.json index 5aa405f6d1..3fee178841 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_crimson.json index 63693ff4a1..99dcded2ea 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_dark_oak.json index b8d36b14af..acb38273f1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_immersiveengineering_treated_wood.json index 577f7c269b..f3558dab56 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_jungle.json index 79cf6be111..cacb9aecfd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_oak.json index e6c97dfa2f..0435398511 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_spruce.json index 17bce1b190..cc2c5826eb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_warped.json index 066274c171..52de72a2b0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_cyan_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_acacia.json index 8440a67e21..a3ec9069ad 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_cherry.json index c9d310a0bc..5ecda127ed 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_dead.json index 367fd3c217..3da904dd47 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_fir.json index c981248e23..718658aee2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_hellbark.json index 991e574bbc..52b2eb769b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_jacaranda.json index 9791a2b3d9..330a03fe6b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_magic.json index 0e6f84c872..d7bb61b920 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_mahogany.json index 247e39f287..ff61830449 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_palm.json index 39a793d554..7f261752f4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_redwood.json index b6e23d3f43..55f7e9512b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_umbran.json index 60cca9ba29..ee8e2e1c0b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_willow.json index 9c958f2143..26393271bb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_birch.json index fa691d9d0f..02d4960ace 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_aspen.json index 083d1be9f6..c99202bf51 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_baobab.json index a190ba7705..b4715eae8b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_blue_enchanted.json index 3c1895b473..3274bd3ac8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_bulbis.json index 968f1d258e..d4cc85f380 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_cherry.json index 40e9d6c7ba..f470dbe781 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_cika.json index c3717339db..ef78ac559e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_cypress.json index aaa69a9bf9..f03ffe78ba 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_ebony.json index a13994650d..448f9368a3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_embur.json index 77e8bb71e0..ddfb038a24 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_ether.json index c9c1243140..55d1b5f998 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_fir.json index cc4457c28f..d56ab53e65 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_glacial_oak.json deleted file mode 100644 index cc81f5bf8d..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_green_enchanted.json index 41e0dc988f..cdebc85e1b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_holly.json index a43720e9ce..47f6dfe221 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_ironwood.json deleted file mode 100644 index 2901a18ac5..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_jacaranda.json index 518441b96c..f2b1affdf7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_lament.json index bf75815abd..ae6361790f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_mahogany.json index aa8ce5192d..8e0c212803 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_mangrove.json index 5afcac5699..e90f4f4d36 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_maple.json index 607442ba49..0271bb6efb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_nightshade.json index ad6c2705a1..2f4157770a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_palm.json index f691ffcd53..1485b93ae6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_pine.json index 1932ae1327..c90c076016 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_rainbow_eucalyptus.json index 478d3ebc35..b1e9df0d0a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_redwood.json index 7decbe24b7..50430778d3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_skyris.json index cdf4a81c77..357a5a6086 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_willow.json index d0d161574a..f29e3fa152 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_witch_hazel.json index ae3ea1ef7e..28ef2f8800 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_zelkova.json index ca8cbe502a..6e09fa05bc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_crimson.json index 63cc14d7cf..784ec94825 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_dark_oak.json index 39deb850a3..ab65f0808e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_immersiveengineering_treated_wood.json index f86e0e07fd..f3dd7c426a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_jungle.json index d9ab8dc210..3002ca3910 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_oak.json index 5e70e89bd8..22829a280d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_spruce.json index 1c757ba7cb..e8dee76812 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_warped.json index 292560f90c..f9196c1f0b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_gray_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_acacia.json index 87884802cf..bc2cda6fa1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_cherry.json index ab1087a3e6..10fc974cc9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_dead.json index 8f04751868..76eee42a95 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_fir.json index 0686a49fe8..f2f40d8717 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_hellbark.json index b44d0c8f57..580ad65b89 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_jacaranda.json index e8a7f9da3a..6578b14c23 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_magic.json index ee289ec175..835952ccbc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_mahogany.json index 05e7830a1f..33eef4f520 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_palm.json index 40581cd80e..f836e1d932 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_redwood.json index f9553d4380..6efcd8d0f2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_umbran.json index d82a09624b..4d7450476b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_willow.json index fab95ad2fd..41ec5d26be 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_birch.json index 35adc6aa3e..7910b7c12f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_aspen.json index 582260e198..36176e3f0e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_baobab.json index a76b6344ab..94a9002100 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_blue_enchanted.json index b1d50243e7..435b057df7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_bulbis.json index 8c992f52b1..38dbc0d015 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_cherry.json index be7cbc3ca6..be73e2f4ad 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_cika.json index 203a80c8fc..ec23957cc3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_cypress.json index 74ecb4ac96..7a676d345f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_ebony.json index 2e611b9079..a9f1389bad 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_embur.json index 7dbf2594a6..d92554bd2c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_ether.json index 3cf50dba3b..3f5096025e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_fir.json index 7817292426..3190c5aa2d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_glacial_oak.json deleted file mode 100644 index 58f3af6c07..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_green_enchanted.json index 4669213cdd..3a1ac7ca96 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_holly.json index dc0b9d8c93..ebf01f912a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_ironwood.json deleted file mode 100644 index 77cd4c01f6..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_jacaranda.json index 65454c3631..7c3bc3b132 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_lament.json index e666c20bd1..f5ec7d6883 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_mahogany.json index fbe5df1436..a93222a9b5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_mangrove.json index bc79928709..3a91ff13a9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_maple.json index f95316d819..9448e65639 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_nightshade.json index 640abd4551..e0363bf1bd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_palm.json index 4af3a443b6..ec94c8018a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_pine.json index 0532277b67..be5f270738 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_rainbow_eucalyptus.json index 0e557e4ee5..8298e3b97a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_redwood.json index 6be42a23da..431062d678 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_skyris.json index c99e2013fc..21df0e4139 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_willow.json index d4f8e6f539..b8fffde749 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_witch_hazel.json index e9f8a590bb..172021dcc8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_zelkova.json index bd55b803fb..1925c05532 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_crimson.json index dd6cf90f0a..f4ecd9da07 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_dark_oak.json index 1395de9d9c..02c0315523 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_immersiveengineering_treated_wood.json index 9c41b7e0e0..5ede557a80 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_jungle.json index f94b851305..55a1963abd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_oak.json index 27ab17bea7..5094622d07 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_spruce.json index 851743eba0..5ae2cd752b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_warped.json index e7a086d408..280cdc291c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_green_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_acacia.json index aaaaecfc64..0b0ca61dc1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_cherry.json index 92f4c02579..3af9ef133e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_dead.json index 5cf0614f60..e1cdbf9855 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_fir.json index bde3d78477..d3c52f3a39 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_hellbark.json index a737891c47..9d68f0dc28 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_jacaranda.json index 01d63cbcfc..8722d9a4b9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_magic.json index 816ad4bb09..0afc795792 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_mahogany.json index cbe9506fbc..f35573d92f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_palm.json index ac1eeefa12..f9858e5407 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_redwood.json index 24effeceb1..46f5b2b9f1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_umbran.json index 678e7e9bcd..511cb69ab1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_willow.json index c1eae3e2a3..b323344ff5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_birch.json index 4a198f5ce7..b0acf42e90 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_aspen.json index 4ef80eada4..668f2f8a3b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_baobab.json index 86b687926e..2ce78663f0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_blue_enchanted.json index 127ca5f089..49df2c0e28 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_bulbis.json index 0ac5274cd6..51e71283f1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cherry.json index 834379e716..dadd5f3e6e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cika.json index 36e5afe93b..2fb0edbf70 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cypress.json index ed15a97318..67cf332782 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ebony.json index a8760eb6ab..d673dcc26d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_embur.json index 028aac664e..079b97a033 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ether.json index af3b5ca06c..47fd2b19de 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_fir.json index 95a79ae77b..c00fa734b9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_glacial_oak.json deleted file mode 100644 index 02230428e4..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_green_enchanted.json index c55c482406..5158618acb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_holly.json index 15617e16a2..951ab50652 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ironwood.json deleted file mode 100644 index e95d20cec3..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_jacaranda.json index 8038183bca..af594e1fdd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_lament.json index 10a5785d85..5547c654c1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_mahogany.json index 0fef691c0f..4ca0fe1984 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_mangrove.json index dd8b279545..a23925221b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_maple.json index 76c72b313b..bce03af2ff 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_nightshade.json index 5c49b64ecc..42a500f159 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_palm.json index a301d18b91..151d4daebd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_pine.json index a0252cab3f..ac970670e1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_rainbow_eucalyptus.json index 82d9a9cf41..ed42a64bcf 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_redwood.json index 6284613fd0..da14115f90 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_skyris.json index 59a68554da..728659a3f4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_willow.json index 095c04c057..1d2ebcf5d4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_witch_hazel.json index e89b0fcb10..52f3cffc0a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_zelkova.json index f152bd83e1..64fc455b8a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_crimson.json index 580383ad73..7be504439c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_dark_oak.json index 3e8fad5194..119ef2eabb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_immersiveengineering_treated_wood.json index 2e59d1ea80..935d8add10 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_jungle.json index 2ebf17f276..123ecda1a2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_oak.json index 3db837cc48..d75136b413 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_spruce.json index 19befcf63b..985ff4dd6e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_warped.json index 44db0dc17b..2505b7b973 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_blue_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_acacia.json index 53a8839864..04c7934a13 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_cherry.json index 7f25e78d18..3ed0031e28 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_dead.json index 78d5453838..b45d3130b6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_fir.json index 3675f59528..514a3ad9a1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_hellbark.json index 0935f475f9..aef51e380c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_jacaranda.json index 991c684680..8c05d7c48a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_magic.json index 9c85d2640a..a79535629a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_mahogany.json index 4b2a388424..829163e860 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_palm.json index 3085413d7b..2b8a53d6a1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_redwood.json index 4fb1b21bd0..cfd026bf69 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_umbran.json index f5a37ee7c2..6a86f2ad6e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_willow.json index 5db0f54592..dd20f22805 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_birch.json index 83b91c0e01..c5b2a26793 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_aspen.json index 7939ee4615..b9df746314 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_baobab.json index 0d4339eb44..d8397793fc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_blue_enchanted.json index 567fdd2326..3bfb26df63 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_bulbis.json index e1c7a33d83..3c2d397e0e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cherry.json index 1acf0e76af..256326a4b5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cika.json index 531a4237d7..fc46a66f82 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cypress.json index 032da8a5cd..7fb9c094be 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ebony.json index a0ccd6fd7d..cf54a521a0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_embur.json index b70959c0ad..3ed43919cc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ether.json index 88a379d78d..32e1cb50d5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_fir.json index b811ae95b6..8d8a6d0cff 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_glacial_oak.json deleted file mode 100644 index 9ac59df68f..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_green_enchanted.json index c75ee28768..fd86eb5005 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_holly.json index e8d433b8a4..ec1aba9ca8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ironwood.json deleted file mode 100644 index 1672bc8799..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_jacaranda.json index d293c6f860..4a8c0b4a9f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_lament.json index 905ff38116..a39ce93b92 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_mahogany.json index 60d02282a8..9b9e3320d7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_mangrove.json index a61afb737c..77e0b23f71 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_maple.json index 823b851da8..2079116e25 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_nightshade.json index 33dad8d414..3acd9ecf7f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_palm.json index 08add96267..c9ce260d32 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_pine.json index 62370f390a..3f1a412db3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_rainbow_eucalyptus.json index 4cc7b74e22..21e52e9a44 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_redwood.json index 15a502dede..d88c7553d3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_skyris.json index d0a8672737..ab8303f121 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_willow.json index 6bd0aabeaa..d60c20a47e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_witch_hazel.json index 70f68d2df7..1ce6e8400a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_zelkova.json index 3bcaa994dc..97809b919c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_crimson.json index 819d1d231b..fe8a4e4131 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_dark_oak.json index 390e3cba44..25f1abdfd3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_immersiveengineering_treated_wood.json index be7be6f89a..a6114bd326 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_jungle.json index 89cacf4e8c..0fa99324fb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_oak.json index b70f46afea..901d54dfba 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_spruce.json index 096a63ffac..c8fc6a7ddd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_warped.json index 5dda83f60b..cdc8013926 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_light_gray_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_acacia.json index 897e597178..513da916ea 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_cherry.json index caa5bb642c..83ad8312b9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_dead.json index b7a3a49fa1..3ebf3c48c6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_fir.json index 0ac0767bea..6ca5179048 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_hellbark.json index 6383047e73..532a55be88 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_jacaranda.json index fece5e160a..1f21c5323d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_magic.json index ec890cdb46..2fbfdc995d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_mahogany.json index 9e620d2e4d..05806eda18 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_palm.json index 52356a55cf..90b9055370 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_redwood.json index efed21c92d..b07b36069e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_umbran.json index a7fdef8af4..202b727d62 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_willow.json index 0d89a879fe..d1e7e0dd3d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_birch.json index d44d83a046..1d93aa74e1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_aspen.json index 798651cc43..53b1fc1d74 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_baobab.json index ff5cf57c7b..af5810c196 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_blue_enchanted.json index 76f2231d89..d58510d079 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_bulbis.json index 25669613c0..258567bd79 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_cherry.json index 8f8c6b7375..ef68c1cb91 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_cika.json index b28f11576b..dbf0ded253 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_cypress.json index 34d583692d..14839f0152 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_ebony.json index 7ce933e184..1e34a2ff00 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_embur.json index b45bf0f66b..758e881b65 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_ether.json index 26fd9d1be3..f925a66784 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_fir.json index a7fe4e9ff8..5f4d06efa4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_glacial_oak.json deleted file mode 100644 index 38afbb981a..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_green_enchanted.json index 069f6d3140..b7ec7436d2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_holly.json index 447568a115..122938ca10 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_ironwood.json deleted file mode 100644 index 576e3971f6..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_jacaranda.json index a361cea1ce..b5dec3f483 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_lament.json index e6dd1fd03f..8da58e71a5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_mahogany.json index 3fa9cede48..6e253d3a59 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_mangrove.json index 2646247034..7702ef33fe 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_maple.json index 5e3c8cff35..2490ab2c30 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_nightshade.json index eefd3a1d70..130b388567 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_palm.json index 7eac7ba546..72779952ca 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_pine.json index 368126ff51..d8531593fd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_rainbow_eucalyptus.json index 501eff85bb..2494ac8ef0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_redwood.json index e61e55fbd6..be5690a76e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_skyris.json index e1a952aefa..dea5992aec 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_willow.json index be7bdeaf0f..5af8838381 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_witch_hazel.json index 6c3cc968e4..dbc57bfe9f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_zelkova.json index 58f335cdc6..1a6a29a0bf 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_crimson.json index c8d6f2d0cb..024680c4d2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_dark_oak.json index b4cd71b39f..770a74ad3c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_immersiveengineering_treated_wood.json index 37ff1cc95f..304d126e19 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_jungle.json index a849bc7738..3f783f9fbb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_oak.json index a9e3ad0de7..86bf016faa 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_spruce.json index a31ef99c52..ee39d2bd2b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_warped.json index 6b83d56dbd..47fb4b6360 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_lime_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_acacia.json index e31c276bab..a2795573af 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_cherry.json index c32c90e258..bc99fb15a9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_dead.json index 06011cee07..1d3f27407a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_fir.json index b5319ec88d..4311fac849 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_hellbark.json index 489f3418e5..863aa489aa 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_jacaranda.json index 35918ebab9..828f38e631 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_magic.json index 4c5c08f04c..0d72d99a41 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_mahogany.json index 8e72067e36..00f434e18c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_palm.json index 1e2468bd2f..3bc22d5f6a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_redwood.json index bf76bc750f..490853215e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_umbran.json index 4b1e58b356..ea849711ec 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_willow.json index 76242a9a88..8dd635781a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_birch.json index 1adcf13a59..f81f13d715 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_aspen.json index 21d39821e6..2b2bc1aa03 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_baobab.json index 68309f8a0f..9e09ebf406 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_blue_enchanted.json index 3bf2481aac..bee75515a8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_bulbis.json index 0e0fbf04ab..051ca93741 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_cherry.json index 8a5b9e2073..5f14b428ef 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_cika.json index 4c648dcc63..72cca7fb65 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_cypress.json index 666079d25f..81364b9f31 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_ebony.json index 6a5c380059..2b0b287e40 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_embur.json index 14177f435b..9ec254997e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_ether.json index fa19a3991f..0ce06b7c49 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_fir.json index c84d6b1dee..929baa5614 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_glacial_oak.json deleted file mode 100644 index dc3988088f..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_green_enchanted.json index 198af8e77b..8130f8db00 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_holly.json index 9ef3bb3889..cbfa75a128 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_ironwood.json deleted file mode 100644 index 7662e696ae..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_jacaranda.json index 48b77bb82a..956bb2b62e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_lament.json index 3e5b086aa5..a184245b86 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_mahogany.json index fde7d43699..4d1756631a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_mangrove.json index b5a8c6e070..4420d4b7a4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_maple.json index f37298d128..8bf8794a17 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_nightshade.json index 8994d70e06..7801de4d41 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_palm.json index d9f0d670c0..ade3a2d0e8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_pine.json index a94fab60f4..699d82f135 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_rainbow_eucalyptus.json index 9acc7e40d4..876de6e295 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_redwood.json index 9ebe3dcc85..8b0db22394 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_skyris.json index b179f0dc11..fd1972dba3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_willow.json index 273ad0dd51..a97dd2f2e5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_witch_hazel.json index c4fcf34c0a..92f812277f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_zelkova.json index ed47014645..60daa23f0f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_crimson.json index 9a87fa6498..8ddeb7da5c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_dark_oak.json index f69143155d..dbbcff2af9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_immersiveengineering_treated_wood.json index 73e2f251a1..5df77ebdbe 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_jungle.json index 3a8c6a40b9..a9e8dc3d37 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_oak.json index b20335427b..4a4c0c5d62 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_spruce.json index 5c4acd3c68..5b10bd5081 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_warped.json index e12d15081b..f83452cdb9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_magenta_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_acacia.json index c2ad23a49c..1274dc3ad4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_cherry.json index 7fb525fd3d..556dc9a5bc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_dead.json index cb382b4632..db7f59035d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_fir.json index 17369e3a91..edafac87c4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_hellbark.json index 054a760dab..2a1344a0bd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_jacaranda.json index f403e564ba..1a59f9fb1c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_magic.json index 74aa165a45..3c62ed0a06 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_mahogany.json index 6c0d88ac07..5b0e14838b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_palm.json index cda1d3e97e..82572010e5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_redwood.json index a5f2138e5a..c1a9e7ffaa 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_umbran.json index 5ecbf98a79..d098cca0ff 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_willow.json index 3c52ac8be6..046224c759 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_birch.json index d50272ab20..b8c3ed202a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_aspen.json index 3346ab7f42..02f0d3c059 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_baobab.json index b3aa7720bf..72541a49ab 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_blue_enchanted.json index 77ed976201..3fd87ed55a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_bulbis.json index 8b05691960..769c58f248 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_cherry.json index cf0813232b..dea05bdea0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_cika.json index 8e3776f804..f0a6bdb22d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_cypress.json index 935b8185a2..17fbdecd39 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_ebony.json index 3adcfc0331..f00d99ec1f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_embur.json index 5be0983c60..e262602ffb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_ether.json index 1b8d860971..d64589dc1f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_fir.json index 7762453103..f9c593a3eb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_glacial_oak.json deleted file mode 100644 index cc2eebcc8f..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_green_enchanted.json index 42241d92f1..1f86602626 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_holly.json index 8ff2bb4bd7..0ec3ec1b9e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_ironwood.json deleted file mode 100644 index 56c99d9332..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_jacaranda.json index 5d6e32ede7..3af602e0c2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_lament.json index ed8dba94b4..b42cefee34 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_mahogany.json index 6aabb1dd39..449956ed3e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_mangrove.json index f6f50ab16a..9d2eb8239f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_maple.json index b7a2c12977..d747a56856 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_nightshade.json index d0138c1827..5f7a24d0e7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_palm.json index 966c72fedd..c76eed4d1f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_pine.json index 3c59904406..9a5def7684 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_rainbow_eucalyptus.json index 0ffe23300f..56825a56b1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_redwood.json index c5d186b6d8..3b71516fdd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_skyris.json index f363de8b57..f63125341b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_willow.json index 579c2ab0d4..2429fd891c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_witch_hazel.json index 1cc5688e91..79bb44cd6b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_zelkova.json index 641595b91d..aa0da1db1d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_crimson.json index ed9e8b8150..5c79aee611 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_dark_oak.json index 10134a12be..57015b690b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_immersiveengineering_treated_wood.json index 375f8ddd60..088ed5f07d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_jungle.json index 0019a623bc..e0b816677c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_oak.json index 58ea706ec7..4a7e2a6af2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_spruce.json index 075719cb04..dde4c527d3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_warped.json index b0d2f991cd..5533fa9914 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_orange_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_acacia.json index 4e4ff15792..6e11c183fc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_cherry.json index 5ff444ce3a..1833b45470 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_dead.json index e2376461cb..69b73acedd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_fir.json index dd9ebf5583..ed96a61d15 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_hellbark.json index bc3641e352..1b23880713 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_jacaranda.json index 448a3d5d0a..a6e97c3f66 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_magic.json index ac62892167..e3c81ab445 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_mahogany.json index 7f8b222b5f..617b470cd6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_palm.json index 789cbf3d8b..cb6ea9a7a2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_redwood.json index c9115ad6cf..43a63d75ed 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_umbran.json index 1b4258def0..35b08e0fbd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_willow.json index bb162df3b7..e7d5835649 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_birch.json index 71cf7d002d..b5d2677cba 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_aspen.json index b348527748..88586d88b7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_baobab.json index 695856fdd6..a797bdba45 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_blue_enchanted.json index 7b0e7b213f..f3453cd2ee 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_bulbis.json index a7553c7268..2342fd21b8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_cherry.json index fb81ca2c16..d7093becfe 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_cika.json index f89bb2e0c4..73e19e34b2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_cypress.json index 0906d49e2f..b4921219da 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_ebony.json index f8e3665549..9cb965c160 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_embur.json index 7834d44a87..f16d69d65d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_ether.json index 7eae33d706..e763d28d11 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_fir.json index 141d5d9032..4b0433e7c0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_glacial_oak.json deleted file mode 100644 index 3bfa0116ea..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_green_enchanted.json index 1288e8ef54..c290147aad 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_holly.json index 8885cc238c..dd7acaead2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_ironwood.json deleted file mode 100644 index 986558e0ae..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_jacaranda.json index 009d7801c6..1cb2de2104 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_lament.json index 3611968c6c..959f33507a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_mahogany.json index ea4229edca..8390683926 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_mangrove.json index 18a054d30f..2c9fb7f1f3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_maple.json index dca407191b..fb13228b30 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_nightshade.json index ec5fbd6660..963b2adedb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_palm.json index 94e7101363..07b504b2a0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_pine.json index 61356c00b6..cbfb97fc5e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_rainbow_eucalyptus.json index d4847def41..2b0e9d02d8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_redwood.json index a9f9e853c4..038b79f359 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_skyris.json index 998617cc88..c086dc4268 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_willow.json index d28b831884..74993b1476 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_witch_hazel.json index 484937b444..9e8c2d624a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_zelkova.json index 690fb5e753..3db81643d1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_crimson.json index ef495899b6..6b2a5433d4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_dark_oak.json index 0451bedbe2..8d72b36f8b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_immersiveengineering_treated_wood.json index 4a2ce3c967..2753ce776e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_jungle.json index 0e4bbcbe46..9e864817e9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_oak.json index fecb64d3e2..dc89b5977d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_spruce.json index e18f48bca4..d43990a429 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_warped.json index 1c4dcfe17f..137a17a857 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_pink_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_acacia.json index 2151741109..d5ce0ac839 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_cherry.json index 2c8000b4f1..11fd8f4384 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_dead.json index 83dc871520..7c4abef164 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_fir.json index b5d20f17b6..c60018adcd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_hellbark.json index 261dc2662a..96be209bf4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_jacaranda.json index 66ce0fe913..25959af41a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_magic.json index 3774946271..67aae74fe7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_mahogany.json index 7860efbe9f..f100cea438 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_palm.json index 6fb2370068..228b114eb5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_redwood.json index 628b28e709..438390c0ce 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_umbran.json index 138743cb3a..ae20525d9c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_willow.json index 030e30b271..87756f31c2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_birch.json index 6606ce1f9e..ae1d6b6f35 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_aspen.json index 2dac4abbb2..4c0e9e821d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_baobab.json index 7a64f93cc5..497065d4e0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_blue_enchanted.json index e7f4f522b1..fc29454e47 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_bulbis.json index a83f86e94d..16459922bb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_cherry.json index 30682f501e..4b8b5ff110 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_cika.json index 35a282d7db..f631fcf082 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_cypress.json index a1425be22b..6e88a73f3c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_ebony.json index 582796f80e..51e2dd89bc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_embur.json index b8bc9c5c0f..e796bd2d97 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_ether.json index 180e8a9a3f..d29a7df6eb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_fir.json index 873a80f3e1..8bb12e3229 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_glacial_oak.json deleted file mode 100644 index b86584b2a0..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_green_enchanted.json index 6f37a08a34..ced68e402d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_holly.json index 77554082de..b4e1f2dee2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_ironwood.json deleted file mode 100644 index 01ceefd229..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_jacaranda.json index 752139e4d5..208d1d9af5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_lament.json index 652ba413e1..3eb9fa4e37 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_mahogany.json index b89a5e8177..07311b1276 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_mangrove.json index b3deee71b3..a09e67d978 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_maple.json index da9e11414c..1433d237af 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_nightshade.json index 1bb0aafa73..c7531098bf 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_palm.json index 9ca928c726..be5e92b097 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_pine.json index be2ec85e92..8223745dbc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_rainbow_eucalyptus.json index a4a59129b4..63aa432ab8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_redwood.json index ea952a52f4..0b12ab6c2e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_skyris.json index 1d09c7d7ac..dd3679c304 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_willow.json index 9375156b77..6af4dfa3ed 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_witch_hazel.json index 5bbaa19352..29bb3554b0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_zelkova.json index 3dc7b544fa..0aa6ea2ae6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_crimson.json index 908aee3fd0..68d2bd7525 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_dark_oak.json index 141763e749..4567eded91 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_immersiveengineering_treated_wood.json index 3fae3cb0ed..0a7f57f3c1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_jungle.json index 680bbdb78a..dc468a4181 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_oak.json index 208fdea107..030cf47407 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_spruce.json index ec99f20a34..cc897631a5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_warped.json index 14b3542e53..6c5ee8be87 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_purple_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_acacia.json index 6aba7bcefb..33c4193c77 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry.json index 10aaf237ad..07f48b472d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead.json index 67a3c8d700..149d90f8ba 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir.json index c79752c0ea..132c74c610 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark.json index e3ce65a20c..a2b42f2c0f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda.json index af68e3c552..796c49edaf 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic.json index 0f1941dff0..cd2ad7dbdf 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany.json index 10383a3496..edac297407 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm.json index 673c4aaec8..c4ecb5cbee 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood.json index 15bdef8439..4a739d443b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran.json index 6772eb52f8..07465ccdaf 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow.json index cf83674513..404292e7d6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_birch.json index 1056e5e44e..16c23cbe05 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_aspen.json index ce4d9b9a2e..2b579cf90d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_baobab.json index a1a32b27da..5d42ac6b79 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted.json index db2bc23673..77980d0485 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_bulbis.json index 99289687bf..d5948ef93a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_cherry.json index 09ba72bb8a..59a31ed925 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_cika.json index 61fb415115..69809a6c31 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_cypress.json index 81f0f39a3a..2d3f20ef46 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_ebony.json index e7544bbcf0..82d399c912 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_embur.json index 57ebd2bb4d..41b843aeaf 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_ether.json index 4bea26a1dd..05cd71e0c9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_fir.json index 74fb79511d..836a0642b8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_glacial_oak.json deleted file mode 100644 index a99cf7cebc..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted.json index f84725d60e..4a1fdcd092 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_holly.json index 11c7f971a3..7c582ca438 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_ironwood.json deleted file mode 100644 index bbb443aa65..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda.json index 7b571e543b..08a9dfd9e0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_lament.json index e5b652231a..f3db6dd8ea 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_mahogany.json index d25ac91d0e..0bad29dd87 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_mangrove.json index 0b606dae07..ae5382068e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_maple.json index 701113462c..ce990e1d4e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_nightshade.json index ce4c07a47f..757fca264f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_palm.json index f42dd1f59c..418d20244a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_pine.json index ba0cb79359..8289ff8760 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus.json index 1602101a13..74f9cf98ac 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_redwood.json index 96d11e9624..5d6df18927 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_skyris.json index 59fa97d9d4..fbbbd54e46 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_willow.json index d57439d9fc..77b60df9cc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel.json index 66040a25be..f1db89b74f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_zelkova.json index 22efc1384d..ef1b166c21 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_crimson.json index 3fd170bd6e..26a7724f26 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_dark_oak.json index 19ee658d42..a6ba554bb2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood.json index ec582dc065..bf5f4ac33f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_jungle.json index fa56a571a1..a2240ed2ef 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_oak.json index 84819c5de8..98fb1a9712 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_spruce.json index c520161ba1..c270b791d1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_warped.json index 5caa1672c6..b555276e83 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_red_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_acacia.json index 0f584726fb..03b13bff05 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_cherry.json index ebe09898be..6cc54d2f22 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_dead.json index 7832e96fb6..e89fbe3560 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_fir.json index 9fd1f2a955..b73d4d95d9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_hellbark.json index 8efc2b2795..a21c57fe75 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_jacaranda.json index aaad5a9f25..f23907b869 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_magic.json index ed74536117..161a8f5ef4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_mahogany.json index 4f851a1078..a1936e2df3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_palm.json index 937e7e6bb7..e25e4b735b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_redwood.json index aa73a1e82d..248a02e5d3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_umbran.json index 6ce428ced0..e3f1992728 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_willow.json index d6d26ffd7d..0c7c235441 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_birch.json index cd97ae03dd..23edd5f740 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_aspen.json index 30f33cf00e..462a6cc787 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_baobab.json index 14c7060f5d..eafb6b8e70 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_blue_enchanted.json index 77cce28a50..0f7bb8ce87 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_bulbis.json index 266b67f32a..d0171a41d2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_cherry.json index ae9fcbe8b4..58c78e5e41 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_cika.json index 45e1ee4a69..6f11b26807 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_cypress.json index 5eb842b53f..7b8087ba81 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_ebony.json index d607cccdf9..f927e02445 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_embur.json index 08315f7f0a..21ae1a2415 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_ether.json index e8afcaa8e6..f21edaa454 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_fir.json index 6902db9bcb..2f27f9d5ac 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_glacial_oak.json deleted file mode 100644 index cdef850d69..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_green_enchanted.json index 3e291cef08..0f429be5e9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_holly.json index f45349cb07..89c0019533 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_ironwood.json deleted file mode 100644 index 411af041e9..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_jacaranda.json index b0ab688d66..45061f0dd8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_lament.json index 5cee370d52..9cd2bbc487 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_mahogany.json index 0cc174284c..1a1584dd72 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_mangrove.json index 450795c828..713c5f0f25 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_maple.json index 12a3803d31..0ef4f91fe9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_nightshade.json index 6c35608336..bd3a1e1c44 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_palm.json index c78ca3fc21..8288ab639b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_pine.json index 5db760b20b..d0886ba1fa 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_rainbow_eucalyptus.json index 46ea7a94b0..f5aca24043 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_redwood.json index 8b494b4576..21ca871608 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_skyris.json index b80ea2618d..68adef3180 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_willow.json index eb90af2cc3..5547282b8e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_witch_hazel.json index 60f5fb5d8c..cd77c8c70c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_zelkova.json index 96f765b06b..3a4f9f0d47 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_crimson.json index d1d7958654..dd9fbeb2c6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_dark_oak.json index 01971fac0a..648247a4e6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_immersiveengineering_treated_wood.json index 15b88c8746..502111d733 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_jungle.json index 501de671df..8a2a90daa2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_oak.json index e5eb42d17a..f184f2d586 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_spruce.json index a6bb538055..5df22bba4d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_warped.json index 50ffd251ea..15647e5259 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_white_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_acacia.json index c99cd8c488..c8e1569b8d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_cherry.json index a358d1021a..95dd210508 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_dead.json index 8fe88ae88e..7edffd127c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_fir.json index fca0c17733..287c1f4d66 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_hellbark.json index 361f181bb5..34ada7af01 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_jacaranda.json index 8db8bcafc9..82949bc40b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_magic.json index 964f4cf3dc..1354e6c288 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_mahogany.json index aa4e92e814..caaec8c2b0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_palm.json index 6cb0800cfa..1f59da1aae 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_redwood.json index a7ec963783..86e7e4a7e9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_umbran.json index 8feccf9ec1..d7568f889d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_willow.json index 5a4f9818b8..812d7c7fd7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_birch.json index 92523107e6..a701791fdb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_aspen.json index a73ed8724e..0340c0e3b6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_baobab.json index de216178dc..aee2e5b7da 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_blue_enchanted.json index 4673d31484..94e2a3090a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_bulbis.json index 829e367c9a..99e006cae0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_cherry.json index b888c089ee..1199652d1d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_cika.json index d1fb2ddace..081a31c854 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_cypress.json index 3a477cb661..d427b0e544 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_ebony.json index 4503b13202..36c67d1ff7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_embur.json index 56eebd8974..9783a50b74 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_ether.json index 255c793c7a..d0d8605190 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_fir.json index c76e616755..89d71481cc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_glacial_oak.json deleted file mode 100644 index 68a6e41500..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_green_enchanted.json index 8a6824419d..dd616b1cf8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_holly.json index de50774f44..a3b4fa8068 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_ironwood.json deleted file mode 100644 index 04a56644f3..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_jacaranda.json index 771ebbaa82..c56ed3226f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_lament.json index 0dd8cedc8f..8d10bb19f1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_mahogany.json index a8fffa61c9..a28a9656b7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_mangrove.json index f73731d5e0..16a54078bc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_maple.json index eab6aef614..bb11a06f83 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_nightshade.json index 76c3edbf2e..63d77d4fd1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_palm.json index aae6ee2fa9..ccc0a53046 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_pine.json index 4d4215e45c..489c7386d1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_rainbow_eucalyptus.json index e854e6e310..25b83acb1c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_redwood.json index 900c9925e2..1fe883a945 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_skyris.json index 0b843b426d..d8c3993929 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_willow.json index c7a22caf70..d3fb9d974f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_witch_hazel.json index 33a50364f9..5e1af6fb32 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_zelkova.json index fa2b95e855..8ac8a5f0ad 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_crimson.json index ddf7e7c09a..63485dc52c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_dark_oak.json index 3dd83b6d87..f0df857670 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_immersiveengineering_treated_wood.json index 177f1f1e1c..0e1073fc6e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_jungle.json index e65377d2cf..dffb7648c6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_oak.json index 2a7f9b48c5..b8793309a3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_spruce.json index 0d963bb785..4748a2e23c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_warped.json index e17fad4492..fe748ca00b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_padded_yellow_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_acacia.json index 0b24fd26d8..fcd8509766 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_cherry.json index b6b1609a1d..d1fcf17473 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_dead.json index 24277845e3..657477f62c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_fir.json index e72ffe7ca7..98f37aa431 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_hellbark.json index 79a8856f05..154d036810 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda.json index cabeed289a..dcc2d41557 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_magic.json index abd9d5c1c7..33086354a0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_mahogany.json index 61ea38d62f..06870df54e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_palm.json index ecb528a548..1e5dc53734 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_redwood.json index e18587d9e3..dcad7e4fd9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_umbran.json index 9208860f59..da661f6d91 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_willow.json index 84345a7404..3288e09661 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_birch.json index 3cbc5b95ec..d076481482 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_aspen.json index 0ddabc4301..12f70e4a2f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_baobab.json index 06225d5632..718987945a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_blue_enchanted.json index 2beeb72886..99365283c5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_bulbis.json index 4cdf4f10aa..9ec7b6b476 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_cherry.json index 9c8afde95c..095712fba7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_cika.json index a5a404fe50..2d09067cbe 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_cypress.json index 794e276885..62c493b993 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_ebony.json index d89f324d93..b5513b2a4f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_embur.json index 56ad1d824b..8865390abb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_ether.json index d84d58c0bb..eced87ecf5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_fir.json index 85864b10f6..5546432407 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_glacial_oak.json deleted file mode 100644 index b460154f25..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_green_enchanted.json index ddf0f08695..0515907a22 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_holly.json index f97e0e20d9..36b54faf2c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_ironwood.json deleted file mode 100644 index 7f57b16f69..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_jacaranda.json index 416bcd8d3b..6c057216e4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_lament.json index 8aefb2d498..7d8d673f05 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_mahogany.json index 7b812f1951..022ec49d8e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_mangrove.json index bf0d9de9a9..93af007e54 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_maple.json index 647055f80f..ef28f1d409 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_nightshade.json index cb3697a594..ba3d168bfb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_palm.json index 7a8095ccb8..ab48bb5e55 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_pine.json index 8f2275450a..107e788ac0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus.json index 492dc5d6ba..320d6d9e65 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_redwood.json index f59d5cc084..e56a95cbbe 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_skyris.json index 83d4ea5fb7..36dcd52f7e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_willow.json index d4b70d4266..6ddd93a91a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_witch_hazel.json index 130f1cc509..cf1cd4f3c0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_zelkova.json index 33e5e5818d..1cc4dc5e98 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_crimson.json index 9387410918..faf18bd8ea 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_dark_oak.json index c3ba7a67f1..8ac9b7a5bd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood.json index 11446f49c4..142a060f26 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_jungle.json index 8024a08355..7f324227a0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_oak.json index 6da9252309..c475e261d7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_spruce.json index 0d2ddeaa63..4b1bdca82d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_warped.json index a21a031aee..b01b9e86b5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_back_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_back_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_acacia.json index 13513f125f..a1d0e21246 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_cherry.json index c31a13ff6b..723b64dc01 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_dead.json index 3e67ed3c99..31cb20cc0f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_fir.json index 625ef3bd19..695ddba384 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_hellbark.json index 1a4773c082..40dca044fb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_jacaranda.json index 427da8a763..6b351d2fe2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_magic.json index c5d8609a69..7318fbd6b2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_mahogany.json index cf792df6dc..7051ec8f34 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_palm.json index 28573eb6c6..bfdc1bb21e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_redwood.json index b414f2dde4..ee0ba4ccb5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_umbran.json index 309cde971f..3a8e2fb70a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_willow.json index eb51219a09..f8b98f81fb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_birch.json index 83b5ef0c7b..e528df3960 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_aspen.json index abe5d84165..1db1fcff91 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_baobab.json index f5adda6804..52fe8d7acd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_blue_enchanted.json index c308aa9d54..be7d41555e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_bulbis.json index 787efef1d5..7c5c96732a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_bulbis.json @@ -1,31 +1,44 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "tag": "byg:bulbis_stems" + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_cherry.json index 2218533867..fd39214930 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_cika.json index 57ef246dae..c6b9541bc6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_cypress.json index 7f930a1323..130666d075 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_ebony.json index 171c0cb0f0..d876e8684d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_embur.json index 97ddf6c383..f04f486498 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_embur.json @@ -1,31 +1,44 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "tag": "byg:embur_pedus" + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_ether.json index 1c7a9e506e..b2a0bc1f45 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_fir.json index 923b5d5d2b..5e103aadd5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_glacial_oak.json deleted file mode 100644 index 8a2a86d869..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_green_enchanted.json index e30c94c6b7..c4a52cbc0c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_holly.json index e09e99f296..306e8c3456 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_ironwood.json deleted file mode 100644 index 18710b1e90..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_jacaranda.json index e80ca5fda4..a3d018e847 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_lament.json index 80af4cf135..c9aaf36675 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_mahogany.json index ed5f2b2f77..b94a123aa9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_mangrove.json index 7ca6c46a31..3e3974aef3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_maple.json index a86bcad081..6e7d98a725 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_nightshade.json index cdc7bc567e..1eaa786372 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_palm.json index 9842d6efbd..3c308792b6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_pine.json index 11ad8dcf9b..19ada1dcd2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_rainbow_eucalyptus.json index c3c898e8db..a70fa04402 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_redwood.json index 5e7b3f3b17..c26847e702 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_skyris.json index 5afdbbfde1..2eacecc836 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_willow.json index de25bec03d..0129aa6817 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_witch_hazel.json index cbd2f0fe24..ff70513528 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_zelkova.json index c6c9ea565f..ad86a9d26a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_crimson.json index b9705138c3..881bece27b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_dark_oak.json index 80bea3a2d3..ffd6fe290e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_immersiveengineering_treated_wood.json deleted file mode 100644 index 8185615dfc..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_immersiveengineering_treated_wood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_immersiveengineering_treated_wood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_jungle.json index 332ea8e6f8..322d2287f5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_oak.json index 7564e17633..766c28ef06 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_spruce.json index de675b8805..9cc15b6ad6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_warped.json index daab01c747..f13ed83ead 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_log_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_log_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_log_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_log_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_acacia.json index 6be461642a..d25a74ba41 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_cherry.json index 175dedb851..6d98d8529e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_dead.json index d93e5d9476..3b310ffe74 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_fir.json index 648abf1cfb..bf615efb69 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_hellbark.json index af0fd58f41..479c74b3c5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_jacaranda.json index 3ec751b0b8..57739e3609 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_magic.json index 1f85c4b276..603c852a58 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_mahogany.json index 747765a1e7..079057fbe4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_palm.json index c01e42c1ef..2f574586e7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_redwood.json index a86bec1493..d1fd950bbf 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_umbran.json index 6532b9ae9b..7afb4d16ea 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_willow.json index 0fde777eec..0cb08596c1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_birch.json index 880819fa07..67acb412e7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_aspen.json index 06950dd91d..05b1d46e04 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_baobab.json index 13162bd2ba..107cd2fc30 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_blue_enchanted.json index e268b4a344..95879b22dc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_bulbis.json index 7ea5f32712..b4cc7ed9fa 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_cherry.json index 4145d2e964..387c2188df 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_cika.json index c622915f4a..822a93897d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_cypress.json index f1fbc2fb67..03efb08b9a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_ebony.json index 5852a0ccf6..597e108af5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_embur.json index 389dbbe8d2..f5e363e446 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_ether.json index e2d8d35ee9..ab45cf57e6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_fir.json index d81bce559d..0db0a52fec 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_glacial_oak.json deleted file mode 100644 index f3c0fdf2af..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_green_enchanted.json index a7e795ca65..11b23a613e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_holly.json index 49d31736c9..b34ed4963a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_ironwood.json deleted file mode 100644 index b3c9799569..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_jacaranda.json index 3e2def68d5..e50f588214 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_lament.json index 133593f54d..298dbc09a0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_mahogany.json index bfb12a3cc1..f90d683ac3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_mangrove.json index 9e381f5e92..32fda9690f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_maple.json index 81ab809a5c..388e6fd8a8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_nightshade.json index 03b06475b7..0323d6dc99 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_palm.json index be6b0f572e..07659eba4e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_pine.json index db020e0e49..d9995b0666 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_rainbow_eucalyptus.json index 1a8ebee139..af03b21894 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_redwood.json index 3da6b39fc7..9dcc917519 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_skyris.json index d347b7987d..c788872bcd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_willow.json index 03f2709c48..2701208069 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_witch_hazel.json index 65f962be9d..47f3e840e1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_zelkova.json index d505e352bd..6fbfe554a2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_crimson.json index d0093fdd0e..368ed2a567 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_dark_oak.json index eb7a2aac75..ae53f7081a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_immersiveengineering_treated_wood.json index cab355b465..9e471fbcdc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_jungle.json index 603693cdaa..836facafd7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_oak.json index 40bba47ed1..85958df0a7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_spruce.json index 583767730a..7ea0c3d2bc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_warped.json index 4b01c8ae64..e965148db8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_black_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_black_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_black_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_acacia.json index 5c4e95591e..6cde325aa1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_cherry.json index 4b24dcc9a4..67bfa63f95 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_dead.json index 9e75ddd66b..0616ab6277 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_fir.json index 9acc2c3822..0d502f9f52 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_hellbark.json index a8b5160687..68b2013091 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_jacaranda.json index b1e9dcadfe..1482dfef9d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_magic.json index 73a0251d97..bade04fc0a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_mahogany.json index 97c7f9114a..5a6622098f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_palm.json index fee2474967..89eb675780 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_redwood.json index 8a54122a1e..77a366cd4b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_umbran.json index d6e270c4b9..8fdcf263d8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_willow.json index a2119a0a99..ceb5cf3886 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_birch.json index e3c2da1422..9792b559de 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_aspen.json index 730a021f7a..171bb8a975 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_baobab.json index 2ba41ad905..06be2ee437 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_blue_enchanted.json index 43739c291e..cdcf79f75c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_bulbis.json index 0f85d5c4ce..e58d266a74 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_cherry.json index d729fa8a94..9fdc78a238 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_cika.json index 1af28f7afd..e4946e8875 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_cypress.json index 70174f44d3..b860a60b08 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_ebony.json index c8261941e6..50cb57bc61 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_embur.json index 57de57ebb5..bcca0977a2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_ether.json index c7959255b7..92dc11d8f1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_fir.json index 8954a7c8e4..18458ef83e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_glacial_oak.json deleted file mode 100644 index e22a19500e..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_green_enchanted.json index 094d7e25e2..ea2a841e28 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_holly.json index d6712a93aa..c79ef163fe 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_ironwood.json deleted file mode 100644 index d026d97fc0..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_jacaranda.json index 99d3af27a3..f16079b1d8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_lament.json index 18afa82899..66d7c4dbf3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_mahogany.json index d1786ee2e9..884783c691 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_mangrove.json index 36368de06e..0683b6f1da 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_maple.json index c1f102ec9b..65d2f51863 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_nightshade.json index 1b5c158483..5cee9c0503 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_palm.json index 7f280a08cf..fc3110aefe 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_pine.json index 379cc0d93e..93c355515d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_rainbow_eucalyptus.json index e1c42c2a95..f0558b3ef1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_redwood.json index d991985e6c..896a3734a7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_skyris.json index 97515ef2d1..9a1568a681 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_willow.json index 8943b66c86..ca2c0d0987 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_witch_hazel.json index 62a083af90..78bfd1e5e6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_zelkova.json index 6e00fa956f..abd28a78ed 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_crimson.json index 8b9ec1886d..a16fa3395a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_dark_oak.json index 33d47982ac..f8a31115aa 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_immersiveengineering_treated_wood.json index 7008984a3b..bb5424eed5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_jungle.json index 6771c677fa..2f7ae908ed 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_oak.json index 61beaa6f73..752d28e516 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_spruce.json index 8f46d6fd73..5f87bec981 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_warped.json index f57614544d..7973703bba 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_blue_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_acacia.json index 857cfac550..8e5ca1fe42 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_cherry.json index 9b17068903..25c0f9e2e2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_dead.json index 6689eef8e8..b730cce2bc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_fir.json index 38b794760f..4a4fc5b0b3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_hellbark.json index 314b632d09..54dbd93442 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_jacaranda.json index 8f0b873963..203beacb88 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_magic.json index 555a68b421..3d3be1b78a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_mahogany.json index 4143a01ffc..644062f3ed 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_palm.json index 9c72044fba..b4feb97dd9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_redwood.json index fbe185a328..69cdeaa55d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_umbran.json index c18f5b470b..9ce393a474 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_willow.json index 049cfa204a..eb54038270 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_birch.json index dbec178e55..5e8d12250b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_aspen.json index 49cae0e2f2..577442aa33 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_baobab.json index f0deb89cd1..098709648c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_blue_enchanted.json index 9ad7996728..d2485c6e5d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_bulbis.json index b903886055..e568182b3d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_cherry.json index cbbdee16a0..9fc8e19cbe 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_cika.json index 5ef7811eee..616d946874 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_cypress.json index 4d85b87382..8e3076f2eb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_ebony.json index 02ead95c83..cbc267cdc5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_embur.json index 0481f62b4b..e6c4c6d172 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_ether.json index 9e795d5ec5..d1a133cdea 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_fir.json index 818afc148e..24220c9de9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_glacial_oak.json deleted file mode 100644 index 04fcd68cb0..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_green_enchanted.json index 6481218ff2..362b03256d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_holly.json index d37727abd3..6619bcff11 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_ironwood.json deleted file mode 100644 index 82fb38fdd4..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_jacaranda.json index 17200b8504..0048dfc7db 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_lament.json index 6e1cf099c2..86e3da227e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_mahogany.json index 2a95053486..4cd2eee473 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_mangrove.json index c5eee48288..ff380ebdac 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_maple.json index 105923853b..cd53a793b3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_nightshade.json index 54293de0d9..d0596d47a9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_palm.json index 77975147ed..bb208e1d5d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_pine.json index ffa7c38141..1e32cd1bd3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_rainbow_eucalyptus.json index c6a03814a1..e7c0736296 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_redwood.json index 4462ccb567..d55f056513 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_skyris.json index 230d91f7b6..a832dcb8b2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_willow.json index 769ede0214..4a66ca3156 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_witch_hazel.json index a3865e06ed..21827926eb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_zelkova.json index c994154fcd..bca7e5c1b8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_crimson.json index 385433c50e..2b2584c0fd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_dark_oak.json index 810b63da6c..2a4cf76b5b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_immersiveengineering_treated_wood.json index 0b9576a8a4..6885b9fc86 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_jungle.json index dbfd5276f6..364e728c48 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_oak.json index c084f51d23..de89179592 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_spruce.json index 0085d89d7d..2f6cb2d34f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_warped.json index e6ee6ddda2..0d84d7a11a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_brown_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_acacia.json index eea4e9ccbb..d2851c14de 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_cherry.json index 7c8ac8a45b..de64c408f9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_dead.json index 618782199d..18a73b9bee 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_fir.json index cea79a8dd9..1de8c81717 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_hellbark.json index d86b3da1c9..2fca3314aa 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_jacaranda.json index 841a5947a5..151e37b8a3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_magic.json index c937055edc..f23d45c72b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_mahogany.json index b8f9857c29..f65d3f1f4a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_palm.json index d059ab51e4..8290511364 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_redwood.json index 11e5bcad2c..ecab81e751 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_umbran.json index 9794e702b9..4683760e78 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_willow.json index b4153c4114..028cfcee46 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_birch.json index 606b18111c..cd8cbcd39d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_aspen.json index 169e20e67f..522ede5182 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_baobab.json index 4ccce680fa..2edd9610cc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_blue_enchanted.json index c71ed5ac5d..9a3068462c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_bulbis.json index 4ea6736753..5c07ff3b0f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_cherry.json index 11d6509fda..80e4415146 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_cika.json index ac3f0d81e8..4a8df6c5d5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_cypress.json index d68a2f77b8..ffdb17db0b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_ebony.json index 530a711917..89483bccef 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_embur.json index e0b5af76e5..2e85f8dd08 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_ether.json index 61df472420..89028460aa 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_fir.json index 53bc89e564..c1e01ee03d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_glacial_oak.json deleted file mode 100644 index 6b37bdecf0..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_green_enchanted.json index e781a1b633..6be9dac71d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_holly.json index aade4206e3..899a010592 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_ironwood.json deleted file mode 100644 index 621ec24194..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_jacaranda.json index bcb3d1cca3..c9d86e6fd2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_lament.json index 9215028bad..b750814bf7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_mahogany.json index 0bdb80245c..071b3361b2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_mangrove.json index 03d1abf7e7..a4f7ba7cb7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_maple.json index aacaf9944f..2ded74c8da 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_nightshade.json index 9d4316fdc3..07d57a6060 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_palm.json index acf46b9a13..52791935e7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_pine.json index 08252bb966..a402c30f72 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_rainbow_eucalyptus.json index f45eb18388..d136830ff8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_redwood.json index 553420b95b..75eb36b495 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_skyris.json index f5cc4c6d3f..afb37b1450 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_willow.json index c320c36cc1..f7aeb43a1e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_witch_hazel.json index 229f4dae2d..6fe710409a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_zelkova.json index 52c3297176..551320c717 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_crimson.json index 4e065bc0ac..d260daf02c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_dark_oak.json index 07c0fdafd5..e289837051 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_immersiveengineering_treated_wood.json index 9e8c289966..9a64a676f3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_jungle.json index 16cfefb455..0b1b7d9b33 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_oak.json index a469c6460b..1b3fbda8c7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_spruce.json index c5b28f78ba..5437f02073 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_warped.json index 1004795898..55719fd04d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_cyan_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_acacia.json index 3b91de8eb6..61fd700572 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_cherry.json index edd0fa7222..bc742a7a24 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_dead.json index bac8851d12..336e12dd7e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_fir.json index d986699e62..a885431670 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_hellbark.json index 1f742d0802..01269a41e6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_jacaranda.json index addfd24279..e0cffa840e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_magic.json index 0e7b98771c..d6f244b943 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_mahogany.json index fe0770171b..9ad1236a45 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_palm.json index 8985628c0b..59193c3ddc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_redwood.json index 82b91dfa6a..8f58d85f65 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_umbran.json index d10a2272d6..6680dd2783 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_willow.json index 77278601c6..f3476ce1f1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_birch.json index a15e187092..15917be5f8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_aspen.json index f166ea714e..ee90100626 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_baobab.json index 07f658393f..66f44f6fbb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_blue_enchanted.json index cd49398791..5007b95c41 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_bulbis.json index d33516fc5a..31c995ea6c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_cherry.json index 5d31c78448..174c0e2e95 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_cika.json index b2f5928f36..69be91e36e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_cypress.json index c7fbd1de76..0bd4643f8f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_ebony.json index 5ca341ca06..096a7b02b9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_embur.json index fa6866eff5..76f5c619be 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_ether.json index 308262eb6f..d86f1a694c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_fir.json index d8795386c5..255674496e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_glacial_oak.json deleted file mode 100644 index 15356eed8f..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_green_enchanted.json index 58cecc310e..2975aeb798 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_holly.json index ad0de857d4..b933899333 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_ironwood.json deleted file mode 100644 index d10731b382..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_jacaranda.json index cc251876e1..5b99ca81ab 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_lament.json index 056a570a80..f268d50a98 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_mahogany.json index f9708783e8..bccb53b8df 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_mangrove.json index 958f6d76e5..1f9acf36ca 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_maple.json index 20719c17c6..b7a4e5eb0b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_nightshade.json index 6bdf834889..49c294667d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_palm.json index b44a2accbb..b79e307980 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_pine.json index bf660dc2f4..24f632b57c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_rainbow_eucalyptus.json index 76e610af42..b154f69a2d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_redwood.json index c6b9facc13..cd02519eb5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_skyris.json index f2340e9995..45e7dac290 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_willow.json index 45558215ef..819d8dcedd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_witch_hazel.json index c5f50780e8..e0f4332c72 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_zelkova.json index fece529a5f..40518ab92f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_crimson.json index 6b0807f4d1..16b01d58a5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_dark_oak.json index fbaa27b061..741932a1d1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_immersiveengineering_treated_wood.json index ff5b7751e3..b9507e00dc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_jungle.json index 82f5b7e5ff..ab6f8a74b2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_oak.json index fd0dcd22b0..d1d6756d18 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_spruce.json index 39d35fc869..fc7bcb4ff0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_warped.json index a1b926b467..eb74064e3e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_gray_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_acacia.json index 69053abbf5..d539045650 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_cherry.json index a7be836828..eaf2f99780 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_dead.json index c1dc50188e..030fb71dce 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_fir.json index 2565b73f5b..5b26445a68 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_hellbark.json index cfb52a4295..34db011200 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_jacaranda.json index 19117280a2..2699ae87be 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_magic.json index 4549d63804..0b25d1dec5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_mahogany.json index 69fe259f87..cb2796045a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_palm.json index 45b7a5bd92..206937d605 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_redwood.json index e9fd2546d5..6ebf09728c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_umbran.json index a5b7430f94..3c2b0ce9b6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_willow.json index 04cde5d03c..08c76d1bcb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_birch.json index b370723814..8b9338ddf2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_aspen.json index 7c60f4b7c9..ae7f64402d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_baobab.json index 5e3488d440..bdb9bca9a9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_blue_enchanted.json index eaaf77558b..a02228f63f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_bulbis.json index 928a9043a1..9eaf4f2bad 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_cherry.json index de227c34a8..c3b7bbb8f7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_cika.json index d4697aebea..56c9631eff 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_cypress.json index 06b32e77a3..f5ad9b3547 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_ebony.json index 079b6ed98b..99192ab0ff 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_embur.json index 907171f451..c08bd706b9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_ether.json index 53d01e28f6..308830d6f6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_fir.json index 36d851dc0a..45d4ce10ac 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_glacial_oak.json deleted file mode 100644 index ec60c2e2d8..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_green_enchanted.json index 2c56068dcd..7df236cabd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_holly.json index 4e2ad0f592..4340532e67 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_ironwood.json deleted file mode 100644 index af997779b3..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_jacaranda.json index c12f733b89..076f97daf5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_lament.json index e8dabc3762..5e855c6982 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_mahogany.json index 26e4109bbe..4503cf4337 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_mangrove.json index d547d58385..6d1a18b22a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_maple.json index d9628c9b52..fb7aeaa32d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_nightshade.json index bb449d4612..2e79dcb043 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_palm.json index 48f85cc4ee..e90f482962 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_pine.json index d11f4c72b7..e74ff927ac 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_rainbow_eucalyptus.json index 257e2f5cce..3e91babd2d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_redwood.json index 269db94e32..32c5452c11 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_skyris.json index f62b097f75..b5bb819ce2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_willow.json index 0682a3f86c..a97aa24249 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_witch_hazel.json index 69a7712fe9..d3414bddab 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_zelkova.json index 1df2e8be23..112e6093b9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_crimson.json index 86cd0014ef..037776b63b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_dark_oak.json index 692175b5dc..65bb0641ec 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_immersiveengineering_treated_wood.json index f2d1b12933..71219c69de 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_jungle.json index d8f53037b9..2488305f60 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_oak.json index c6cf60db1b..b16aa253c8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_spruce.json index a23be03033..62bdba6bad 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_warped.json index 5e88c04e01..b39c2ca4fd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_green_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_green_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_green_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_acacia.json index 66610f1c40..c1c4a5b5e3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_cherry.json index bb19f008f8..9b96b6c565 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_dead.json index f57d13c49a..afb8140b74 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_fir.json index f4c74470df..3ace298f06 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_hellbark.json index 9086705c21..546844aebd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_jacaranda.json index 04de61a4e0..93b8f03609 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_magic.json index bbfd40c489..a4976600ec 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_mahogany.json index 19ce6f42bc..f03d18ddbf 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_palm.json index 8c45f9e38d..d73f906272 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_redwood.json index 957f9460a7..4953bb119d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_umbran.json index a38f87b0c1..2d447bd665 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_willow.json index 8032567f40..2d72d53355 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_birch.json index f43ab9d522..25820deaf9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_aspen.json index 324ba29d95..5b07f4548f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_baobab.json index 459b2d764c..367bc01446 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_blue_enchanted.json index 38ee3f7d8e..03f8109b57 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_bulbis.json index 2628eaf917..9bfcd8175e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_cherry.json index 1bc7946406..0bd7aacfe0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_cika.json index 01cd2ac31a..4b6512a13d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_cypress.json index 5175184593..bf3edbce4a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_ebony.json index a9bdb9feb8..a59e3b0578 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_embur.json index 6a35488191..df30777302 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_ether.json index 4db4fa2e1c..c400337aef 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_fir.json index 074847f35d..76f8e41231 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_glacial_oak.json deleted file mode 100644 index 757a2e98d7..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_green_enchanted.json index 71fc52b6f3..6c788b0f3e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_holly.json index 6e324e2897..8b1a7b80d6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_ironwood.json deleted file mode 100644 index 3e901130f4..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_jacaranda.json index ac4a3b9186..a10accfbf2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_lament.json index e588caafef..c1c8be4367 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_mahogany.json index 33f5965326..e1fd8552d1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_mangrove.json index bc76b77541..dc502aad9e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_maple.json index bd3be0da33..0ebfb1210a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_nightshade.json index 573bcd9216..715034866b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_palm.json index 2dc264bebb..cc70fc779c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_pine.json index 4e632d4e36..091425a650 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_rainbow_eucalyptus.json index 958b4eacbd..98c394ca1c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_redwood.json index c91d87ec65..912ee0e102 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_skyris.json index 68b3b31022..4d82524912 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_willow.json index 0dff95c088..1ac7a81bd3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_witch_hazel.json index 7e9119a132..06cdbd2b1a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_zelkova.json index 068c03a311..0bf5eaf6cd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_crimson.json index 08dcf22974..1d6076e48f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_dark_oak.json index d2ff80e597..955fe501ae 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_immersiveengineering_treated_wood.json index bab9b7ba27..679f48a949 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_jungle.json index 503fe6afa9..7224ee8e4f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_oak.json index 089225f908..ed44360264 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_spruce.json index 3bcf68bf6d..903b1b134c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_warped.json index 066ac43889..01c21840ee 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_blue_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_acacia.json index 6f6513dba7..9e3c9f07ea 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_cherry.json index c11c18e11d..e39197fa7e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_dead.json index abd470aaee..de55ff01dc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_fir.json index 1708f73b0c..78f443155b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_hellbark.json index 955f02f308..e4be5aa06b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_jacaranda.json index af763ff1cd..98fcce7def 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_magic.json index efad741d2f..38596feb98 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_mahogany.json index 956415c946..e0b3e11540 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_palm.json index c966a13d18..eedb78ef4e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_redwood.json index 5111675332..6d9af9d53c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_umbran.json index 337eac7a3c..19a5d204b9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_willow.json index 4b78700c1d..3cdc100059 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_birch.json index 045441f5b0..4dc075aae7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_aspen.json index f885231ca1..652a979ba8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_baobab.json index fa32ea45a2..5b704e1818 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_blue_enchanted.json index 9a22d40883..135fb8c202 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_bulbis.json index 9af131d93f..d1376cf1d4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_cherry.json index 923ebb179f..df09049591 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_cika.json index 591ea5e723..59c9e31ca8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_cypress.json index 66f062063a..20193ae66e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_ebony.json index 4e70f6fb4b..486e9f63c6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_embur.json index 17b5a2b267..b72efb6709 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_ether.json index f91e10b6ee..6a5fe5a6ca 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_fir.json index e724105e97..1b8c900cc4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_glacial_oak.json deleted file mode 100644 index c68c7a002f..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_green_enchanted.json index ac5337417a..d526b78da1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_holly.json index 2cbf9633da..ce145a0058 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_ironwood.json deleted file mode 100644 index b561a32131..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_jacaranda.json index 440f389b30..08dc19fae9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_lament.json index adf4a42ca1..1f46dab443 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_mahogany.json index adaa4a044b..26bbeb6ba9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_mangrove.json index dd22766aa4..19e3fad25b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_maple.json index cbc53fda7e..af9e2434db 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_nightshade.json index 6368a514a6..0de610d7a6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_palm.json index aa2afe1e7d..55e4a58ff8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_pine.json index c3384bfbc4..57c230551e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_rainbow_eucalyptus.json index 3709f29570..0a24fcf133 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_redwood.json index bb725b59a9..e1e88e77d6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_skyris.json index 175b55b637..bfb2951f1a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_willow.json index 2fabb5700b..cca5743580 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_witch_hazel.json index f940f5b7b5..02757d7641 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_zelkova.json index b5b414c76b..1e9360ce31 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_crimson.json index 0f11d56c11..7d6e2b5695 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_dark_oak.json index e483393ecd..6abbdf1231 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_immersiveengineering_treated_wood.json index 5214cb97bb..36da420713 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_jungle.json index b1c8c2bac2..2c354c558b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_oak.json index 08b7ff6bbe..387ec8d629 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_spruce.json index adc9a9e7de..7ea72fdbbf 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_warped.json index cc423bb731..25dff9f8b8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_light_gray_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_acacia.json index 5bf5589c07..252afc2a9e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_cherry.json index 9e7844c929..b402b095d8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_dead.json index 4483b41fa9..ceb0df60f2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_fir.json index e8564d51c7..d5ba07b667 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_hellbark.json index f629c06d36..bb6cc21df6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_jacaranda.json index 178fb59d39..e55ce4e8be 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_magic.json index f972da82f2..c4cc60ba68 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_mahogany.json index 1150f91142..20b10e77ac 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_palm.json index 4acb6af2b9..a00d6566dd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_redwood.json index f6a259cc20..e283dd0ea1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_umbran.json index d8f0f812dc..643cadeefe 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_willow.json index ab078d01ad..426c857123 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_birch.json index 408cb7cab3..3f05951e47 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_aspen.json index 0553e079e8..821aa4120f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_baobab.json index c2bf7efe1c..40f42b4600 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_blue_enchanted.json index 0b7706ce42..30426ff5c5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_bulbis.json index bc4c478bc4..cc107b809b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_cherry.json index addeea15c6..49ca4c72f8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_cika.json index 66b0573421..34ac03cd0e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_cypress.json index b7bf7eba96..93477c88d3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_ebony.json index 21000dd869..9c7875b0d0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_embur.json index d3ab5940e5..fd93ff7b05 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_ether.json index 5a7e0da1f0..ceb6e89189 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_fir.json index 72df0d6c79..4aa48ffc05 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_glacial_oak.json deleted file mode 100644 index b9c5bf04a6..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_green_enchanted.json index c43d35f62a..aaddc50ca5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_holly.json index 194fe55249..39c06cd90c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_ironwood.json deleted file mode 100644 index a06fe744a2..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_jacaranda.json index 2e67a45fa5..9118f110ad 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_lament.json index 53da9555d7..100f825c49 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_mahogany.json index bd32fd9c50..fd7b947f8f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_mangrove.json index 01352fb7ea..f14cc85a47 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_maple.json index 7b98dd0311..5eacaa2704 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_nightshade.json index a284da7a16..b59d1c32d7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_palm.json index f9fccaee6c..27e6ce869b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_pine.json index 7b0085bd32..8082b0fc2d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_rainbow_eucalyptus.json index 25d61b8d0f..0e0b9f0093 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_redwood.json index de167835d5..1f3bd771f1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_skyris.json index 5e2cbcdaa6..829294354d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_willow.json index 5515639c30..064b9ff493 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_witch_hazel.json index 402122800d..c37af4d954 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_zelkova.json index 58070cac8f..3aac03e387 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_crimson.json index a7728895ea..300f8f2bf8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_dark_oak.json index 49f6552005..92cd412dbc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_immersiveengineering_treated_wood.json index d03b6a3ca1..36c1535641 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_jungle.json index d4202dae57..aaf5cdfff6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_oak.json index 96da71a90f..001fc51e75 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_spruce.json index 7c80a6da48..a013183028 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_warped.json index d21699f8bd..1580f08c52 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_lime_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_acacia.json index 546c46e7e9..f0a940809b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_cherry.json index 24e009a6c5..683f4dc5e4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_dead.json index 9b3776b7d3..6515cf0e55 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_fir.json index 6101836072..0039462583 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_hellbark.json index 9969d8ea1f..301418a3ac 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_jacaranda.json index a38671f1fa..b55a866087 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_magic.json index 4b9b8efe7f..d847846f6a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_mahogany.json index 2c42f30ded..654a8f26d9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_palm.json index a436380043..fa70c5fc1c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_redwood.json index 1b3e5ed303..6a3c62f94d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_umbran.json index b518f40b8e..ce369a8de1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_willow.json index 4e9ada2e25..78f7e27484 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_birch.json index 29aef932b7..ea693e9604 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_aspen.json index 945f53d031..dad53da0b1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_baobab.json index 9ff0bfebe5..85f6bdde9c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_blue_enchanted.json index ff78cf3655..4404681478 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_bulbis.json index 01a068aa88..a9e7ce85d6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_cherry.json index d320b8fbf3..8e9159a117 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_cika.json index 70858b0e81..e074ddf86f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_cypress.json index e8a96d62a5..e86240fc33 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_ebony.json index 995e6464e9..a47b767feb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_embur.json index 82f583989a..1a72585c8b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_ether.json index c782383218..fa5ab02ceb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_fir.json index ae0c84a8ae..fa3ed1cd08 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_glacial_oak.json deleted file mode 100644 index f6e3336f54..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_green_enchanted.json index d9cb29649f..5e91dedbab 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_holly.json index 511c929309..9834bac0fc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_ironwood.json deleted file mode 100644 index 1c2ca13dac..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_jacaranda.json index 8c4096ace4..945f5dbdb8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_lament.json index 99beb89d11..d3689db05b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_mahogany.json index 3ace3645b7..57232168ff 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_mangrove.json index a1c0cdfac2..6ebad02539 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_maple.json index c1e0a72815..2f20c92745 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_nightshade.json index 08d3949856..d01e5cfa68 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_palm.json index ee282b739f..3838606e0e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_pine.json index b16930a752..07f60781c8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_rainbow_eucalyptus.json index 0d9d6a6121..cf29f3ecad 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_redwood.json index 9e81a9f3fd..7a5c59011e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_skyris.json index 17f46af7fc..3bba6b9e9a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_willow.json index 488edeb8ca..87dbc6a137 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_witch_hazel.json index 8d1369f80e..47c98c3c74 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_zelkova.json index 433a5a2ce5..aa57a77078 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_crimson.json index 0f3670da34..f79aee78df 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_dark_oak.json index cb52085c38..5120c005b3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_immersiveengineering_treated_wood.json index d9434b17f3..531a35b414 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_jungle.json index e99d26dce4..c8bd949e0d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_oak.json index 6f8b54732e..f72a1b2b30 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_spruce.json index b5df87a407..766a85015a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_warped.json index 8e611485ba..7043262d62 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_magenta_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_acacia.json index a0c08e40fe..b08deb11bc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_cherry.json index 65e0968dec..49281158d2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_dead.json index d7c1125ec6..70a50317a2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_fir.json index b4aa9c6905..9d1881cb0e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_hellbark.json index ff1f112280..29fd41ecf9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_jacaranda.json index ea117e36fb..559920b220 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_magic.json index 044fcb90eb..90c8a1e602 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_mahogany.json index b9296bc216..839cdbab6d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_palm.json index 66b8ceacf0..82f4cda169 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_redwood.json index 7ec2beb6aa..95ff833922 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_umbran.json index ef9a42141f..e037589129 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_willow.json index 30071c02f2..715ec4bd8d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_birch.json index 9ed23f27a4..3407aa9d8f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_aspen.json index 245a5ccc40..0bfbaa1f76 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_baobab.json index 6160869ed2..bb72330b48 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_blue_enchanted.json index b6e3d7703b..07bb83af49 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_bulbis.json index f851139940..e66dae3a3b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_cherry.json index 7c5272b94a..7c2be2d442 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_cika.json index 36e4fafaa3..e39808f647 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_cypress.json index 2df50c1b84..bd208e42e3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_ebony.json index e306afb003..8d5f930098 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_embur.json index e440fc7789..bdb4a80e33 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_ether.json index e671ae5fe5..34e0d7b862 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_fir.json index b1567b3a57..dbc6c3cd79 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_glacial_oak.json deleted file mode 100644 index 891e1a1412..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_green_enchanted.json index d73050f10e..04700be75b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_holly.json index 0c6b51cdb3..a30c049ecd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_ironwood.json deleted file mode 100644 index 447775b9fd..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_jacaranda.json index 7d99eea699..cef297070a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_lament.json index 9ba0b167a0..7da0799ec4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_mahogany.json index 982fb51dc0..966891d42c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_mangrove.json index 832466de1e..8135ed2e86 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_maple.json index 8072d7a4e2..e2bf635f48 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_nightshade.json index 09ca5b6b7c..0d11134aea 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_palm.json index 0adbecacd7..e8ecdf7b18 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_pine.json index 84dad0d560..5063c28687 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_rainbow_eucalyptus.json index f11f52d5b3..f448974ab8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_redwood.json index 966ebe5a09..6def23b2d0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_skyris.json index 065dacdf92..c3eeb74c0c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_willow.json index 17b0081a01..4d677adc81 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_witch_hazel.json index 714aca4596..6a0e2807bd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_zelkova.json index ceed6ab69c..e38172e4bf 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_crimson.json index d103b8a017..95c43dd6ce 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_dark_oak.json index 93f7dc1bdb..43f1726a5e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_immersiveengineering_treated_wood.json index 7ec2fc8684..aa96004949 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_jungle.json index 25c4ab9bfb..559468b2be 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_oak.json index 6588f5841c..cf729ede48 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_spruce.json index fe4897108d..0700e381be 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_warped.json index 8a894e5fb2..55b47660fb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_orange_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_acacia.json index 59d848546b..b03ef1403e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_cherry.json index da40620cb9..dd0ebfef3c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_dead.json index 6d396ec13c..234f744948 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_fir.json index d3cac9d72d..5b9952b2bc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_hellbark.json index acebc1c1be..a23ae89e4d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_jacaranda.json index a03f135f58..273d7d6ce0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_magic.json index 2ad0222f22..00e59fd0de 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_mahogany.json index b23014ffd3..b5efeb517e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_palm.json index 025909dcf0..a05f8c8345 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_redwood.json index 688afbb33d..9b3684b1ed 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_umbran.json index a0275014e4..d2719da856 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_willow.json index 3f97efafc3..ad3d7b77a3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_birch.json index e47c9c338c..55c733a49e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_aspen.json index a8cf736827..97cd90b9c1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_baobab.json index 5b8f36cbe3..19cf7812cb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_blue_enchanted.json index d607694757..518d3934c5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_bulbis.json index aae2dc6f17..6419114e02 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_cherry.json index 7b40a34d56..d6f001f4f1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_cika.json index 08d015d33c..b1adfb6664 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_cypress.json index 9f1d78d442..b97ab7a22e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_ebony.json index 6217653239..eb93c0788d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_embur.json index ef4ff41ef6..df2a0fa50a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_ether.json index 62d8986a6d..599371240a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_fir.json index 88d8eccea8..b567ab518d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_glacial_oak.json deleted file mode 100644 index f28f1b9f59..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_green_enchanted.json index 9d533b0750..b23f13d445 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_holly.json index 5582c1b200..61b68f5851 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_ironwood.json deleted file mode 100644 index 3134b3dadd..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_jacaranda.json index fdd4144c5e..96427f36f0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_lament.json index 799279ba84..e245a573ab 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_mahogany.json index 865da80fd7..7eb4c291b1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_mangrove.json index 40e361f3fd..f0dd8bb2e6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_maple.json index a9c4a984a0..63dc030823 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_nightshade.json index 011eddf10c..27ab8e630c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_palm.json index b84fea697d..105c9fa172 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_pine.json index 543ea67550..c33fe1293f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_rainbow_eucalyptus.json index 092072ef8e..f6c7b02326 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_redwood.json index eeef1a2c05..683cdbcad6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_skyris.json index dc8f6dde6d..c8911f4302 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_willow.json index 7a0dea8f48..f3337e07e2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_witch_hazel.json index d39295637b..c77bfcba00 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_zelkova.json index fc91801ded..1d7784a1d4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_crimson.json index fd82e094ed..6ecc8c10c4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_dark_oak.json index 37c3ba5bf6..e965aed348 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_immersiveengineering_treated_wood.json index e09c1d9889..c414c6bb15 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_jungle.json index c02097a764..d8c9379662 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_oak.json index fb182ca79f..45fb3bfc73 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_spruce.json index 4fc6915f94..7af2e3add7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_warped.json index abee806271..65c96f9801 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_pink_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_acacia.json index eced32f0c7..a66569a258 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_cherry.json index fa08c6da4a..8972a9287a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_dead.json index eeed6aa727..1ac09b5b0d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_fir.json index aa74eb1aed..64d8369fb2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_hellbark.json index 52c80ddecf..0530a797e8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_jacaranda.json index 9a7d9c1e9e..30c783dfa4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_magic.json index e388cc233c..b6f42d074c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_mahogany.json index 5c5e72f208..8eeedc109a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_palm.json index 04f193cb02..90af413d09 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_redwood.json index eba3da5098..2046a190c4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_umbran.json index 5195a3676f..6c8246731c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_willow.json index bd6f8c498f..5c1a756c56 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_birch.json index 3987c1b9e2..0fc415ed43 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_aspen.json index e62749a679..c89eed49f7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_baobab.json index b516089434..fb41423c80 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_blue_enchanted.json index aa2f9fcca7..efc209309a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_bulbis.json index a0a7d2eb13..ebf4aa39ab 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_cherry.json index 2403fc1ae5..2ed921c2ef 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_cika.json index 2f74d6bd4d..73d086dd5d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_cypress.json index 47975d27d4..14d1208548 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_ebony.json index 99dfda6fc0..1e66f15ee6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_embur.json index 5e71f62b99..d4e22ac0fe 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_ether.json index 2989da0bac..9ec7790a9c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_fir.json index 1920880530..e865037c2f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_glacial_oak.json deleted file mode 100644 index 5014c67502..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_green_enchanted.json index 270ff21070..23c6248529 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_holly.json index bc4dc96a48..fe47126578 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_ironwood.json deleted file mode 100644 index 0a3f5d1da5..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_jacaranda.json index ac3f5ded46..188e180e3d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_lament.json index d0d826552f..5e28cadf01 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_mahogany.json index 2ed778a4f3..9a95b312ed 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_mangrove.json index 20afa4503d..579c0ff3df 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_maple.json index 1c5b4f2bc6..a9b985032d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_nightshade.json index bb033b95c5..a6d64b510f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_palm.json index cf776cdb21..6e8f0f6ccf 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_pine.json index 3676b401b5..c0a1894c11 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_rainbow_eucalyptus.json index e35f063f96..f0a5006a6c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_redwood.json index eb02696ad3..34da37045b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_skyris.json index 8a40f58a8e..f5207b4499 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_willow.json index bfb93ecc65..1c407d247c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_witch_hazel.json index c4baf9fa2d..664bd678f9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_zelkova.json index ebfd406a2a..0e5c9335b8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_crimson.json index 34d8bf2fd4..e7be8469f8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_dark_oak.json index fbab2fb5dc..1e8214e823 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_immersiveengineering_treated_wood.json index 4ea7fdd895..631ddff69e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_jungle.json index edbfe11c18..89f55def49 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_oak.json index 732c17f430..d56c687586 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_spruce.json index 5dd4cb661e..f343a2b6ff 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_warped.json index 433ec1b8c7..89bf324580 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_purple_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_acacia.json index 1c0a3592ba..4223219481 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry.json index e4f3b486ce..75e8da9711 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead.json index 65a53ef9c2..154a0169ce 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir.json index be553304e9..30df6b5108 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark.json index 8ac244295a..43ea1f7a16 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda.json index 590df26d5d..e64ded6b2d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic.json index 80ec0dcf15..1593aa2919 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany.json index b52001115f..d1c93e06ee 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm.json index b0cc70c9b0..fd05624f8e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood.json index 0ba5f82247..b65950a99e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran.json index 5719e95f50..c31ddfe60f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow.json index add228db5f..bebc31d1ee 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_birch.json index 1527577659..02925e0774 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_aspen.json index 00e8e91345..b907ad5016 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_baobab.json index 4bf407b039..de29ea24de 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted.json index efd9183062..929804c69c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_bulbis.json index b0fd8fa336..62fa66d510 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_cherry.json index 78efbb3d27..6406879d32 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_cika.json index ee653ae8e7..4ad37cb66c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_cypress.json index fe08d3111b..c01450cf4b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_ebony.json index 148941d48e..2ff052f842 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_embur.json index 4b644991c5..6a621963fe 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_ether.json index 30902da567..4f14c17704 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_fir.json index 9c9359f3bc..970f319b00 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_glacial_oak.json deleted file mode 100644 index 3ad21080c2..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_green_enchanted.json index d88b7682ec..347d525012 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_holly.json index 8701dd4fab..174c092b53 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_ironwood.json deleted file mode 100644 index eab8d1fd84..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_jacaranda.json index ec9b65802f..c44f976670 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_lament.json index b4048b67d1..ddfc054ccb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_mahogany.json index 6adb3b2d21..7341527bb6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_mangrove.json index ec8a2e23fa..12f0dafc5e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_maple.json index 50e8bba95a..3d3cabbd5d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_nightshade.json index ed489529be..5a9eb44087 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_palm.json index 1623ef4fbb..7a43336d11 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_pine.json index a4b97b5060..02aedb41cb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus.json index b659242537..7bbc0d71f6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_redwood.json index 7a83f5e175..4459345df3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_skyris.json index 5aec818402..7001c29c32 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_willow.json index 0e8fcc23b3..b4a1d748bd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_witch_hazel.json index 97776d7e1f..5ca497f7c1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_zelkova.json index 8afb2503b9..ccf46a78ee 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_crimson.json index f5a564b491..f94839c150 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_dark_oak.json index f78cfe2544..81e18cc0cc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood.json index 90497dde37..e470307560 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_jungle.json index 4d6d1ab1e4..0b5f22aba9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_oak.json index 8476fc055f..d5a9a34ded 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_spruce.json index 86f4275bad..e4f4a0d03c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_warped.json index a4c9d880a1..73382fe912 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_red_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_red_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_red_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_acacia.json index f01d96a8ba..00fe64d183 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_cherry.json index 7a9f0af126..1ec505f36d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_dead.json index ad556749bb..995b4856b0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_fir.json index 1396f6b81a..2e40c48e0c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_hellbark.json index 3d2823ed4f..e1fe7e0804 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_jacaranda.json index 5fa78a9963..483f15a855 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_magic.json index 2962798b55..634d4bc79c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_mahogany.json index 249312599e..a1ecb7f1d0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_palm.json index a37295b85e..48068ccfff 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_redwood.json index 7186686bf4..02129623d4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_umbran.json index b0210c4a1a..bfa4934aca 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_willow.json index f006c197c8..18b9a8d10a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_birch.json index 67944001df..21921bf9df 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_aspen.json index 0cc79f049b..1e9f12f75c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_baobab.json index f6f5685ec0..9463725265 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_blue_enchanted.json index 14c895b19c..6bf3b4511e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_bulbis.json index 9000215446..39277e4e03 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_cherry.json index b2c71f3426..cebf8ed543 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_cika.json index c4711eec36..9398ba20c4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_cypress.json index 4eafa2c76d..489b90a663 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_ebony.json index 22719a6e2f..8494ee66f0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_embur.json index 60598b8fb2..cd15d7104c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_ether.json index 15074c6919..dff70beee1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_fir.json index 6a54034da1..50d3b3fc39 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_glacial_oak.json deleted file mode 100644 index 9e2ee34169..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_green_enchanted.json index 166879597c..59aa64ac71 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_holly.json index c0d586d77c..0d13ffb090 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_ironwood.json deleted file mode 100644 index 7732e8b491..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_jacaranda.json index 377d6e994b..b4e323d60c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_lament.json index cb74b08401..8b257bdefb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_mahogany.json index 212279df95..64e42d8559 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_mangrove.json index d5466a1d10..7237504fc2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_maple.json index 0e46fab5dd..a1bdc7a4ed 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_nightshade.json index d96be7761d..1e8758485c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_palm.json index 6d10db3ef3..9c640fbe71 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_pine.json index b78763f08f..47fe5b9603 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_rainbow_eucalyptus.json index 231bdd8eaa..8a22118229 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_redwood.json index f5ea8ddece..7d98f057c3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_skyris.json index 51fc855391..b48c600a37 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_willow.json index d46d33570e..a29a519f05 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_witch_hazel.json index 9bda8f84d5..0c6ccc21cf 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_zelkova.json index 343e3e38ab..e953a3ce27 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_crimson.json index df37af4b68..97fd2bd126 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_dark_oak.json index 30c7026070..f80609cc23 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_immersiveengineering_treated_wood.json index 87a7b2fabf..d4627074ec 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_jungle.json index 274a6183d9..5f49ed2880 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_oak.json index c5cab9877c..a926dd7db6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_spruce.json index 181b9b3c16..76bfe6de2c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_warped.json index 43899dcb37..115ca9a403 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_white_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_white_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_white_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_acacia.json index 4c11f55fed..7dc3f7a8ef 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_cherry.json index ce5fcdc706..6416f1b21a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_dead.json index 0f99c16fc1..790b893560 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_fir.json index a71253e227..41cbd386c8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_hellbark.json index c6d6bc9227..1e4e4a87b1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_jacaranda.json index f7044f0ad9..f42c6d99f2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_magic.json index 799ababd60..f92508e3a4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_mahogany.json index 8aa073991e..f7900edd4b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_palm.json index d6f28681bb..617f44fb71 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_redwood.json index 87bdb34253..38cbe85184 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_umbran.json index f2412cef87..ec6d6ff056 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_willow.json index 73024cacf9..e798457686 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_birch.json index d99d8210d9..64f3321d09 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_aspen.json index 1e1599f893..8edb3f9881 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_baobab.json index 116ad5b74d..4bbf78c09d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_blue_enchanted.json index 5e92b91d41..c7410b9059 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_bulbis.json index 7514799c21..70494cae9c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_cherry.json index 16fb85673e..a0d0bd33c5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_cika.json index f20429dadb..1f25660670 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_cypress.json index 16554e6567..3a4f0c8ca8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_ebony.json index 61e92c7d8e..7125ab25ff 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_embur.json index bf506d5f00..2146d59769 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_ether.json index e759e0e463..9eb8d57751 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_fir.json index 1e55555c00..044f1807f2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_glacial_oak.json deleted file mode 100644 index 74df6e135a..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_green_enchanted.json index 18c786863f..931367c2d5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_holly.json index 70e82bddd0..7cf4a098ed 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_ironwood.json deleted file mode 100644 index 72f987427d..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_jacaranda.json index 88129e820b..ab954d20a9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_lament.json index 65c7039158..2380c32d5f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_mahogany.json index 1616935302..d258a18df2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_mangrove.json index 2c13cfe305..08c212d9b3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_maple.json index 7ccd6d01a5..86bbe7cfda 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_nightshade.json index ce094a0e1f..84479cc480 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_palm.json index d3e3dac64c..77e2a5690a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_pine.json index 812c093c39..91fbd68fe1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_rainbow_eucalyptus.json index 8485526d52..4574459e5a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_redwood.json index a40c4ac0a6..b851184f18 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_skyris.json index 3683d5fc26..7622ca9876 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_willow.json index 027c4980ad..10ad31c5a0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_witch_hazel.json index b8d8745d4d..1c90df4e54 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_zelkova.json index 360149cd8c..3d0c6c190b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_crimson.json index 90192120f1..e449a5e0fe 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_dark_oak.json index 977dc9226c..06c27ffbf8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_immersiveengineering_treated_wood.json index 350d1cd60a..26619f23a9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_jungle.json index cd818318ef..6f3ea2eedc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_oak.json index 19d953a996..b9a0744505 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_spruce.json index 8c7603103b..455e0607b8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_warped.json index b9c6c26572..254bbdbab6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_padded_yellow_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_acacia.json index ee88761ec8..76adb4db3b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_cherry.json index 1b3b99b7a1..dae0290294 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_dead.json index b225c67052..511a3a9d42 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_fir.json index 94e915b9d9..a90a010c98 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_hellbark.json index 34f27c327e..302c263b4e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_jacaranda.json index 232b6ae156..f7d774ea6b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_magic.json index 1435e1d671..0b28634a7f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_mahogany.json index efd73108cd..6ab1b2fd60 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_palm.json index 7f00ff9197..b4423436a0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_redwood.json index 98bf915d95..373e12ba68 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_umbran.json index 395696f5fd..714a2ffe9d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_willow.json index 7ec7f77192..58c5ae3953 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_birch.json index e5bf0c8253..357e186b62 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_aspen.json index 30782c581e..a0bcf344d9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_baobab.json index a6ba922eb9..39fb2c6473 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_blue_enchanted.json index 0cfcb7636f..e00243f83b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_bulbis.json index 6674912928..0b69557cac 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_cherry.json index 0867d2c1a4..bff4bb6cab 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_cika.json index d6e35e5fc7..f3936e8457 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_cypress.json index efdecb0b67..b31def63bd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_ebony.json index d02dc70837..04873a550d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_embur.json index 5e2edb4dc8..593656fb57 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_ether.json index f98555d7b1..fa8e80debb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_fir.json index 43e601968d..8d1de692da 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_glacial_oak.json deleted file mode 100644 index 97a075ec22..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_green_enchanted.json index cf5c774cd4..2fd2356522 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_holly.json index 23226fd2f5..cf34809c87 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_ironwood.json deleted file mode 100644 index 64a295995c..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_jacaranda.json index 740645ef93..3f1e55c360 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_lament.json index 822ce72acb..e13136f45b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_mahogany.json index 9b179bdf51..5e7b67f4ce 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_mangrove.json index 6fe94a90ea..ddc386dd72 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_maple.json index 5a1e96205e..4b2d3a318e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_nightshade.json index 5c9a37a481..0a84715826 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_palm.json index db72667bbe..b085625350 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_pine.json index 9f0d7921f7..7bf71f7b33 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_rainbow_eucalyptus.json index e90f796be1..94af1dba24 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_redwood.json index 319924eb5d..9d692e4862 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_skyris.json index 16ebeb7987..ff9712b50a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_willow.json index cc00f4c4f9..f87d4dbc81 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_witch_hazel.json index 913a3d87f5..ec04c9ec26 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_zelkova.json index 2eb88cd119..053a3b995d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_crimson.json index 1875b7abef..d6b9ee410b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_dark_oak.json index ce811c0636..a28d007084 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_immersiveengineering_treated_wood.json index 89a0d9c2ef..cacd486dd4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_jungle.json index 078b8cce7f..5a1ad54ee1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_oak.json index f43cf3d0f9..96cbf88dee 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_spruce.json index 1529f0af87..a582524e2f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_warped.json index 58a591eae7..9856b26248 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_bench_single_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_bench_single_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_bench_single_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_bench_single_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_bench_single_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_acacia.json index 4f9fa9684e..c6b124b535 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_cherry.json index 00868bb08d..078df05fee 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_dead.json index 0800862087..a70d6650bd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_fir.json index 30a69f7ad6..1390298fb9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_hellbark.json index 7b08022f64..7d0c8c9605 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_jacaranda.json index ef69f3ef30..609275fb50 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_magic.json index 09f4119f5a..6f5468315e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_mahogany.json index 6338fe0570..5cc94f5fba 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_palm.json index 98d32c110b..7083f59d5e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_redwood.json index 0f48cf422c..3fa06f2bef 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_umbran.json index 6570d48663..59283c3dd4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_willow.json index aef39d0463..39301f0a57 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_birch.json index f9a7f13c96..a71af0e122 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_aspen.json index d8171fef42..2bd2ab62e6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_baobab.json index ea6290e9c6..968f06ba66 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_blue_enchanted.json index 1d086bfbc4..4b5f474e68 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_bulbis.json index 2014e9da73..4d37f0ad54 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_cherry.json index cd0533342a..ee2071646e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_cika.json index 069876b8b7..79e2ab4198 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_cypress.json index 91f67c0d51..06027bedde 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_ebony.json index 44a648c189..e54340aac8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_embur.json index 45ca1d7f5b..d773231882 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_ether.json index 43a20923a9..f626da35ce 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_fir.json index 7d62a6a2e2..afe429e726 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_glacial_oak.json deleted file mode 100644 index 69d70b6524..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_green_enchanted.json index 420bac1f19..8a2fca1dc4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_holly.json index de1d266fa8..f56445e028 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_ironwood.json deleted file mode 100644 index 7932841ef9..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_jacaranda.json index 3c6ba8b33b..7367f38020 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_lament.json index cd6ada6566..53e66e6929 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_mahogany.json index 7c9bea6f75..a7d2eb8274 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_mangrove.json index d1437b10ca..5aa405e014 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_maple.json index 903588706a..fb05600567 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_nightshade.json index caa981ff25..2a2373b4ac 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_palm.json index 45d4318893..90dff0eda8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_pine.json index 7c840bc551..fa56319a61 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_rainbow_eucalyptus.json index dd5fe47979..ac14d811d1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_redwood.json index 67e556d649..9f351f4b80 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_skyris.json index d60304631d..f8891dd83a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_willow.json index fccf2b7af7..f76c651cd8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_witch_hazel.json index 1fe8351b15..22847aadc2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_zelkova.json index be0280df09..58b7421a75 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_crimson.json index bfad70eb41..d54a7d824e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_dark_oak.json index 1ed9dd6cf4..5c36796bce 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_immersiveengineering_treated_wood.json index 643baccbf0..2387c9f777 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_jungle.json index a24f4d4740..789bda1efa 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_oak.json index d8dbd7b826..9811e034d5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_spruce.json index 7a94dac366..2ec1b64edb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_warped.json index 813f1af961..c98cfceb85 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_classic_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_classic_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_classic_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_classic_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_classic_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_acacia.json index 59a856a1b2..e91021dc5c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_cherry.json index 456b0f0613..c12c3ddd65 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_dead.json index b3f4e5d7e2..2f7427a471 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_fir.json index 238e1d4061..d6ec040c12 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_hellbark.json index e403546d4e..374489967a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_jacaranda.json index 15ff8e225a..99b1a24e61 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_magic.json index 1caf0b4bcd..dc165f0fc8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_mahogany.json index fac606fa74..0b726ecf48 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_palm.json index 25f2f1226d..41bd2f96b7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_redwood.json index 23ba1b7380..f972a68a33 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_umbran.json index bab5360344..b31066f62d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_willow.json index c02c4e906f..b2815ee74f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_birch.json index 690cfdb53e..89fefedad9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_aspen.json index f08a69c4e6..a4e087ffb5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_baobab.json index 412d6b45ab..ab389f4d38 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_blue_enchanted.json index 0aba1cfb83..e2ab8e38ae 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_bulbis.json index d9d787c47a..02917c291a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_cherry.json index d3a48fb35c..e681bdb9af 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_cika.json index a35d24487f..4d2e93034a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_cypress.json index 94da7d3210..fbfe59cca1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_ebony.json index 04927591f8..b0a3a210e6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_embur.json index 2c3512e0d4..404c0942aa 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_ether.json index f123a1c6a4..2c9e33f850 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_fir.json index 1a3513e841..21b1674bde 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_glacial_oak.json deleted file mode 100644 index 6e0d0c6903..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_green_enchanted.json index ee00f6a655..3ca6788a46 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_holly.json index 32c20721ae..c26f4bf493 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_ironwood.json deleted file mode 100644 index 1a54ab4d18..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_jacaranda.json index 503cce95b0..1a4b30ae81 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_lament.json index 50bd8737f7..b3bb13f715 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_mahogany.json index 47cfbcfc26..889a7cb916 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_mangrove.json index e5722c354c..26bf4b6e31 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_maple.json index 87cf01b0eb..60bca9aa62 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_nightshade.json index 3c97d976e7..082d229026 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_palm.json index 75b584198b..41e7245a05 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_pine.json index 61a1b21842..e9756d86bc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_rainbow_eucalyptus.json index 77799eee55..d293154f5a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_redwood.json index b8846ff5be..a95fb7f076 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_skyris.json index 89f23ed60e..c925f6356c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_willow.json index 724857f312..e4eec15f33 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_witch_hazel.json index 0849e3d79d..5f1211edc8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_zelkova.json index 5266e9c4fe..16c2d1e426 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_crimson.json index f55392d95f..94f1fa56ac 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_dark_oak.json index 8e5752c1f8..c1613c4602 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_immersiveengineering_treated_wood.json index 965530fa51..d52cc7edbc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_jungle.json index 2d5710830b..7637034c33 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_oak.json index 0508db70e9..77a37468a0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_spruce.json index 62ae52a64f..172532bc30 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_warped.json index 7f3c4bb275..7890b58747 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_shield_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_shield_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_shield_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_shield_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_shield_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_acacia.json index 26de03362b..b0d73c5a9f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_cherry.json index 3162a472d0..b392c5e976 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_dead.json index 0fcd95e011..deaaff7aa1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_fir.json index 3a35a8321b..386c05fba9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_hellbark.json index 0e1311addb..b0012023fe 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_jacaranda.json index 42bb77d161..97883b7e2c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_magic.json index c8d31c7c77..463ac79e98 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_mahogany.json index ace1c8eee3..e0a8767c5a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_palm.json index 191f38f91d..9c1d40b731 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_redwood.json index 1dd2f1ec8f..78904b0f25 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_umbran.json index ccfe25bc7e..f9ed355c23 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_willow.json index 451b994af5..13f801fadd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_birch.json index 996bb0841b..300f577f61 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_aspen.json index 7e6b24720c..ee1a3cf072 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_baobab.json index 886fca067c..2eb3b1e20a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_blue_enchanted.json index 232004e51a..d28c923006 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_bulbis.json index 24b7adae81..f58a0e00b1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_cherry.json index 637a6ac425..0c7c8af6ca 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_cika.json index 5b2588ff4d..98382e7de0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_cypress.json index c87cdb7fc9..0c7f006020 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_ebony.json index f110b27841..7ed8ff33be 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_embur.json index aa1051fd87..b71d050bcf 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_ether.json index 2dfc8d8c1f..f044c26a60 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_fir.json index 040f55e08e..4020f7a848 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_glacial_oak.json deleted file mode 100644 index 3185f56da8..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_green_enchanted.json index 2fca32c697..d89099fc86 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_holly.json index 64f9ed054c..9a944d437f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_ironwood.json deleted file mode 100644 index 977a298a28..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_jacaranda.json index 366cdbecfc..ce6a896bcc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_lament.json index f09ed84b48..1994cbd4d5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_mahogany.json index f66b263f59..25fa8761a6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_mangrove.json index dfef79674f..5841224532 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_maple.json index 89f8e98a92..5f14bbf409 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_nightshade.json index 74685f187d..fa24e8a4f5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_palm.json index a08f25cf8d..829b2fa757 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_pine.json index 0daebdd10e..d763565686 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_rainbow_eucalyptus.json index aef4499044..106d6391b7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_redwood.json index 91bb7c4475..c7884d046f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_skyris.json index 139118bd38..1de78c4c8d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_willow.json index 0abd306ebd..b0e0f3af37 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_witch_hazel.json index b88012e05d..08d664397e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_zelkova.json index 38bc6f6932..bd4e70fcfc 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_crimson.json index 48c2a0a067..cf91a679ad 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_dark_oak.json index dd102ec16f..78a54a0164 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_immersiveengineering_treated_wood.json index 305a3ef616..f9941166ca 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_jungle.json index 0bda606439..defb015608 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_oak.json index 0e0768b779..2e771faa06 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_spruce.json index a38cb66e71..6597789ab7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_warped.json index e3f3170ad8..15ffb038e5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_short_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_short_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_short_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_short_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_short_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_acacia.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_acacia.json index d753a1669c..b001267c7f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_acacia.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_acacia.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_acacia" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_acacia" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_acacia" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_acacia" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:acacia_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:acacia_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_cherry.json index d886ffb8f5..e85a658ef9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_dead.json index a9368728e6..89876e84d7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_dead.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_dead" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_dead" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_dead" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:dead_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_dead" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:dead_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_fir.json index 409b9408e6..db02f6a12c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_hellbark.json index 47a01cb7b8..8a18126023 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_hellbark.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_hellbark" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_hellbark" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_hellbark" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:hellbark_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_hellbark" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:hellbark_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_jacaranda.json index 05e4abff59..6f3e192d4d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_magic.json index 917b9b3648..1cb8b38d99 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_magic.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_magic" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_magic" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_magic" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:magic_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_magic" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:magic_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_mahogany.json index 49cede7ef1..5e6a4ec43c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_palm.json index b542b16157..34d176568b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_redwood.json index ebc468d519..9c3df3d54a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_umbran.json index f65c53530e..3f1867c0fd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_umbran.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_umbran" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_umbran" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_umbran" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:umbran_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_umbran" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:umbran_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_willow.json index 42061fc138..6e18a45f7c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_biomesoplenty_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "biomesoplenty" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "biomesoplenty:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "biomesoplenty:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_birch.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_birch.json index 24d9e5fabc..088d69dea3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_birch.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_birch.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_birch" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_birch" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_birch" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_birch" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:birch_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:birch_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_aspen.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_aspen.json index 49364d2f69..9eebeaa6de 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_aspen.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_aspen" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_aspen" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_aspen" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:aspen_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_aspen" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:aspen_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_baobab.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_baobab.json index 6ecee82368..3010dcf62d 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_baobab.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_baobab" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_baobab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_baobab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:baobab_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_baobab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:baobab_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_blue_enchanted.json index 428484e4a0..2e184adbf1 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_blue_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_blue_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_blue_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_blue_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:blue_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_blue_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:blue_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_bulbis.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_bulbis.json index eb4d7a1ec3..69c9aacd20 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_bulbis.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_bulbis" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_bulbis" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_bulbis" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:bulbis_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_bulbis" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:bulbis_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_cherry.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_cherry.json index 5165c760d9..c53fe45dc8 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_cherry.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_cherry" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_cherry" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_cherry" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cherry_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_cherry" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cherry_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_cika.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_cika.json index 487ac868a3..e0e088ad64 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_cika.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_cika" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_cika" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_cika" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cika_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_cika" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cika_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_cypress.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_cypress.json index f5a3da15d3..945ead9be7 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_cypress.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_cypress" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_cypress" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_cypress" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:cypress_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_cypress" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:cypress_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_ebony.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_ebony.json index 8ba5d07046..98db134b38 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_ebony.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_ebony" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_ebony" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_ebony" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ebony_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_ebony" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ebony_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_embur.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_embur.json index cccde5355f..f5144163f5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_embur.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_embur" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_embur" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_embur" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:embur_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_embur" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:embur_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_ether.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_ether.json index a8813c875b..da78c538de 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_ether.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_ether" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_ether" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_ether" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:ether_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_ether" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ether_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_fir.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_fir.json index 106af76621..33855cd131 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_fir.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_fir" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_fir" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_fir" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:fir_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_fir" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:fir_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_glacial_oak.json deleted file mode 100644 index 282a4cce7a..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_glacial_oak.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_glacial_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_glacial_oak" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:glacial_oak_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_green_enchanted.json index 00a2e12ef6..a3cadadf6c 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_green_enchanted.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_green_enchanted" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_green_enchanted" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_green_enchanted" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:green_enchanted_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_green_enchanted" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:green_enchanted_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_holly.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_holly.json index 2c2f8277d3..09fcac97f2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_holly.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_holly" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_holly" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_holly" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:holly_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_holly" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:holly_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_ironwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_ironwood.json deleted file mode 100644 index e08f0b174c..0000000000 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_ironwood.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_ironwood" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_ironwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:ironwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_jacaranda.json index 7c617362cc..953fa407a3 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_jacaranda.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_jacaranda" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_jacaranda" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_jacaranda" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:jacaranda_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_jacaranda" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:jacaranda_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_lament.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_lament.json index ff4c8a898a..1052172adb 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_lament.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_lament" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_lament" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_lament" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:lament_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_lament" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:lament_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_mahogany.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_mahogany.json index d23fc2dcb9..116702552b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_mahogany.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_mahogany" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_mahogany" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_mahogany" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mahogany_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_mahogany" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mahogany_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_mangrove.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_mangrove.json index 5ad69c7471..f3ef977b6f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_mangrove.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_mangrove" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_mangrove" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_mangrove" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:mangrove_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_mangrove" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:mangrove_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_maple.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_maple.json index ed089d5f27..0116765202 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_maple.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_maple" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_maple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_maple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:maple_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_maple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:maple_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_nightshade.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_nightshade.json index 5fa5a6b1a5..daa8776eb4 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_nightshade.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_nightshade" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_nightshade" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_nightshade" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:nightshade_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_nightshade" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:nightshade_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_palm.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_palm.json index 94cdb0889b..ec509b538b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_palm.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_palm" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_palm" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_palm" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:palm_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_palm" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:palm_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_pine.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_pine.json index 4026a322fe..5b90c58fc5 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_pine.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_pine" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_pine" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_pine" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:pine_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_pine" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:pine_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_rainbow_eucalyptus.json index ec5d4594fa..ac7d581bd0 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_rainbow_eucalyptus.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_rainbow_eucalyptus" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_rainbow_eucalyptus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_rainbow_eucalyptus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:rainbow_eucalyptus_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_rainbow_eucalyptus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:rainbow_eucalyptus_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_redwood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_redwood.json index 831983e1ca..5968d8c24a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_redwood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_redwood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_redwood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_redwood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:redwood_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_redwood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:redwood_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_skyris.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_skyris.json index 5cf7161125..1a0b7da4cd 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_skyris.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_skyris" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_skyris" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_skyris" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:skyris_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_skyris" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:skyris_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_willow.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_willow.json index 203a6fb957..da66f2b15a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_willow.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_willow" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_willow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_willow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:willow_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_willow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:willow_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_witch_hazel.json index 6c1a38cb1b..7c0891799b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_witch_hazel.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_witch_hazel" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_witch_hazel" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_witch_hazel" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:witch_hazel_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_witch_hazel" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:witch_hazel_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_zelkova.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_zelkova.json index b8f5ab8247..535d00bf35 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_byg_zelkova.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_byg_zelkova" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "byg" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_byg_zelkova" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_zelkova" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "byg:zelkova_planks" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_byg_zelkova" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "byg:zelkova_planks" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_crimson.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_crimson.json index 91007d9401..f98a8d5db9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_crimson.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_crimson.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_crimson" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_crimson" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_crimson" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_crimson" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crimson_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:crimson_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_dark_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_dark_oak.json index 88e26f2892..0c9a3c61b6 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_dark_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_dark_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_dark_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_dark_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_dark_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:dark_oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:dark_oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_immersiveengineering_treated_wood.json index 2d9d5334d2..09d5503181 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_immersiveengineering_treated_wood.json @@ -1,31 +1,46 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_immersiveengineering_treated_wood" + "advancements": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "advancement": { + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_immersiveengineering_treated_wood" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_immersiveengineering_treated_wood" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "immersiveengineering:treated_wood_packaged" + ] + } + ] + } + } + }, + "requirements": [ + [ + "has_rock", + "has_the_recipe" + ] + ] + } + } ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_immersiveengineering_treated_wood" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "immersiveengineering:treated_wood_packaged" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_jungle.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_jungle.json index 4364e4134e..28fe25bcb9 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_jungle.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_jungle.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_jungle" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_jungle" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_jungle" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_jungle" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:jungle_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:jungle_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_oak.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_oak.json index dcaff0af1c..7f97b1e497 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_oak.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_oak.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_oak" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_oak" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_oak" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_oak" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:oak_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:oak_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_spruce.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_spruce.json index 510e3250f0..623a144a27 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_spruce.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_spruce.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_spruce" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_spruce" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_spruce" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_spruce" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:spruce_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:spruce_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_warped.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_warped.json index 4892389f86..819e2fa64e 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_warped.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/chair_wood_ironage_stool_tall_warped.json @@ -1,31 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:chair_wood_ironage_stool_tall_warped" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_warped" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:chair_wood_ironage_stool_tall_warped" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:chair_wood_ironage_stool_tall_warped" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_planks" + ] + } + ] + } + } }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:warped_planks" - } + "requirements": [ + [ + "has_rock", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/light_metal_ironage_block_floor_glow_clear.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/light_metal_ironage_block_floor_glow_clear.json index 2461134be3..d7d380da28 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/light_metal_ironage_block_floor_glow_clear.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/light_metal_ironage_block_floor_glow_clear.json @@ -1,24 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:light_metal_ironage_block_floor_glow_clear" - ] - }, - "criteria": { - "has_nugget": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:glowstone_dust" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:light_metal_ironage_block_floor_glow_clear" + ] + }, + "criteria": { + "has_nugget": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:glowstone_dust" + ] + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:light_metal_ironage_block_floor_glow_clear" + } + } + }, + "requirements": [ + [ + "has_nugget", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_nugget" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/light_metal_ironage_block_floor_lava_clear.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/light_metal_ironage_block_floor_lava_clear.json index e78b2dc2e3..11044c733f 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/light_metal_ironage_block_floor_lava_clear.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/light_metal_ironage_block_floor_lava_clear.json @@ -1,24 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:light_metal_ironage_block_floor_lava_clear" - ] - }, - "criteria": { - "has_nugget": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:lava_bucket" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:light_metal_ironage_block_floor_lava_clear" + ] + }, + "criteria": { + "has_nugget": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:lava_bucket" + ] + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:light_metal_ironage_block_floor_lava_clear" + } + } + }, + "requirements": [ + [ + "has_nugget", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_nugget" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/light_metal_ironage_block_floor_red_clear.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/light_metal_ironage_block_floor_red_clear.json index f4f6d7a2d1..db9134cdc2 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/light_metal_ironage_block_floor_red_clear.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/light_metal_ironage_block_floor_red_clear.json @@ -1,24 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:light_metal_ironage_block_floor_red_clear" - ] - }, - "criteria": { - "has_nugget": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:redstone" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:light_metal_ironage_block_floor_red_clear" + ] + }, + "criteria": { + "has_nugget": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:redstone" + ] + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:light_metal_ironage_block_floor_red_clear" + } + } + }, + "requirements": [ + [ + "has_nugget", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_nugget" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/light_metal_ironage_sconce_floor_empty_iron.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/light_metal_ironage_sconce_floor_empty_iron.json index 7c4042f1f6..d07aff595b 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/light_metal_ironage_sconce_floor_empty_iron.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/light_metal_ironage_sconce_floor_empty_iron.json @@ -1,24 +1,34 @@ { - "rewards": { - "recipes": [ - "ironagefurniture:light_metal_ironage_sconce_floor_empty_iron" - ] - }, - "criteria": { - "has_nugget": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:iron_nugget" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:light_metal_ironage_sconce_floor_empty_iron" + ] + }, + "criteria": { + "has_nugget": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:iron_nugget" + ] + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:light_metal_ironage_sconce_floor_empty_iron" + } + } + }, + "requirements": [ + [ + "has_nugget", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_nugget" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/obsidian.json b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/obsidian.json index 60f1c90328..599a6eff6a 100644 --- a/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/obsidian.json +++ b/src/main/resources/data/ironagefurniture/advancements/recipes/chairs/obsidian.json @@ -1,24 +1,34 @@ { - "rewards": { - "recipes": [ - "minecraft:obsidian" - ] - }, - "criteria": { - "has_nugget": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "ironagefurniture:obsidian_chunk" - } + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "ironagefurniture:obsidian" + ] + }, + "criteria": { + "has_nugget": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "ironagefurniture:obsidian_chunk" + ] + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "ironagefurniture:obsidian" + } + } + }, + "requirements": [ + [ + "has_nugget", + "has_the_recipe" ] - } - } - }, - "requirements": [ - [ - "has_nugget" ] - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_acacia.json index 6891746f28..77f037fe12 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:black_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_cherry.json index 1ba86a2f47..e49fc3d9b0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_dead.json index 891da07b43..307c22e3bc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_fir.json index 732e3aa48f..3d5ac353f2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_hellbark.json index 9c0bfdb7fb..6833105737 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_jacaranda.json index 8623ef1cd2..1e2f34b981 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_magic.json index 85414315d7..a3026a5986 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_mahogany.json index d3c5b8aae8..005a7b7dbb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_palm.json index e9220f12f2..1069224bd2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_redwood.json index 4da718def3..e012908582 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_umbran.json index 6a71aca81f..0bb6404fa6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_willow.json index ad90a6b844..e5a3771e07 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_birch.json index 1316ea367a..d1e86b774a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:black_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_aspen.json index 3121b367b4..ddc3f7d40b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_baobab.json index dcc2a2fc84..c0a30d98ed 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_blue_enchanted.json index 6ca95e04a2..afa961ce25 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_bulbis.json index 3a01f90f2d..6a72488929 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_cherry.json index 006df20414..9e318aec2e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_cika.json index 5b12f8a6de..ca6fa88cdf 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_cypress.json index fc6b9c451b..dd159e0f48 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_ebony.json index 46bf9bec49..5993cb5fdd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_embur.json index 1a5d25368c..732fae9213 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_ether.json index b1e6bf35c2..f04a679984 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_fir.json index eece9cc969..f728ba0a8c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_glacial_oak.json deleted file mode 100644 index 24a945c279..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_green_enchanted.json index d95dbaf32d..c7107f3e0a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_holly.json index 74f52bc6d4..e47d106557 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_ironwood.json deleted file mode 100644 index ffe2db99e8..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_jacaranda.json index 923cdb8ef8..fbdf6fdf7d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_lament.json index 2f6a901f3a..c84b864cf6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_mahogany.json index fe922e1d5f..1a761ab9a2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_mangrove.json index ac53caf4a4..889101dfbb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_maple.json index 72eacef63b..cdbc12730a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_nightshade.json index 258a8d61d8..6b5e63b1b9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_palm.json index 4ec3e79686..023feeb30d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_pine.json index 1502438ec1..8d5408c973 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_rainbow_eucalyptus.json index c1ce2e9f2c..25bddd03ac 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_redwood.json index f8afa88fa7..e38244bbfb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_skyris.json index eac2a6cee9..b6dcaf785d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_willow.json index cce1e38063..d91675ea57 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_witch_hazel.json index fb5941eba2..66120075bc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_zelkova.json index 677750385b..94883c895e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_crimson.json index 86d0a360eb..52ca5daa58 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:black_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_dark_oak.json index 11094cfa58..ab46606476 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:black_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_immersiveengineering_treated_wood.json index 24bc111a2e..9bf107937a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_jungle.json index 564dcea2a9..0cf18044f1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:black_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_oak.json index 102cdd3967..056dcfce1a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:black_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_spruce.json index 2d7ed875fe..f0c8969034 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:black_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_warped.json index 17557c1da4..cbdae4bfd0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_black_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:black_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_black_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_acacia.json index a313147bc8..2ffde46b91 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_cherry.json index fd3a530806..e966506c19 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_dead.json index e9e6cd7f9d..556507fb42 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_fir.json index 1d071ee352..868a5dc7e5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_hellbark.json index 60a523de2f..6ebe9c5ea5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_jacaranda.json index 3ccebe4ee0..c6d8109dbc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_magic.json index 6aeca04fdb..e480529c31 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_mahogany.json index df266dde0c..60104a07ed 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_palm.json index 1a6477dcb9..8359aa4a94 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_redwood.json index e4031bb66d..d210e37720 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_umbran.json index e015ebaaa4..a23e9b768d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_willow.json index e0cb4aa94b..679f286e2d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_birch.json index 54b846ce1f..00cff64ad0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_aspen.json index 917ef7373d..dee29971cc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_baobab.json index 18b2f1481e..e0142045d5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_blue_enchanted.json index caa3626935..367b649a78 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_bulbis.json index 76ebbc3d1d..6dfc6aac9f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_cherry.json index fa6c90f76b..b7c2870163 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_cika.json index 0c986ab632..0b94a332c1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_cypress.json index 1c74f2dbd7..a9650bb528 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_ebony.json index 262e2d450a..254edeeab1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_embur.json index a153c2a2ef..4575588377 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_ether.json index 4fac8c9210..63873910d1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_fir.json index 15fc5609f9..263c2db42e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_glacial_oak.json deleted file mode 100644 index 81dd31e839..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_green_enchanted.json index 65159503b0..e0b8a70ec3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_holly.json index 772f233edc..b9bb679061 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_ironwood.json deleted file mode 100644 index de6ea15c9b..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_jacaranda.json index 7cb7ea1069..abc2fb5df9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_lament.json index 4919e1a6f2..4960107d1f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_mahogany.json index 7caedb6f72..4ba7cea851 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_mangrove.json index fe9e36877f..255d8f909d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_maple.json index a246b5f14a..3b78527fad 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_nightshade.json index 1d2e16aec7..41c3189ec4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_palm.json index c0c5a61b3b..f00c1a232c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_pine.json index ee1d1df0dd..9d574c3d2d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_rainbow_eucalyptus.json index 26c96f4fec..43a80e82ed 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_redwood.json index 0cefdcec97..bdd8ef5046 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_skyris.json index 235c6986c5..20301f0d48 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_willow.json index a9e20648a8..47010c4169 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_witch_hazel.json index f291c4856f..3127b88198 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_zelkova.json index e6418e4779..a20c183384 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_crimson.json index 7deaf217dc..ef98faaf2b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_dark_oak.json index 63cd4e7aa4..4cec00c4a1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_immersiveengineering_treated_wood.json index 3d1327afab..0db0f39061 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_jungle.json index 4e313ab355..ad34af24c2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_oak.json index d0075b7aa1..6ca647c699 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_spruce.json index b985220634..f135172329 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_warped.json index f4679c8cd3..eac903bdbf 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_blue_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_blue_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_acacia.json index d8c33990aa..14261dd1df 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brown_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_cherry.json index 973ce2bbd6..640eee01bf 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_dead.json index 166ca723c4..49c1f63eeb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_fir.json index b096583434..e90b97bc21 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_hellbark.json index 0c7b86c427..89f611ff98 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_jacaranda.json index 56e4b60fd2..995cd23531 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_magic.json index 3e830a3a3b..50957793b1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_mahogany.json index 6e18f2c58a..065c1c3c18 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_palm.json index 9570422d21..1f83f86f82 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_redwood.json index bd851c9352..01faf0f128 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_umbran.json index 236b7d4472..3ff7e02e3b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_willow.json index 0031d39ae9..900c05e6a2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_birch.json index 2e18804e86..08a8292f53 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brown_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_aspen.json index 2df70a6d80..906ac89cba 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_baobab.json index 2e1a3c14b0..090336a8e2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_blue_enchanted.json index 03991a4cd3..b057f522e2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_bulbis.json index 6cd5b54535..82f7dbd265 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_cherry.json index 0a2b17f22e..d634d3085d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_cika.json index 3cdce3ccda..e1bf502b6f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_cypress.json index de4d5d53ee..5a41dae9db 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_ebony.json index f58488117d..2f360520cf 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_embur.json index 1866ea65a8..73578175f0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_ether.json index 9d216c0709..cf5fd96d7f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_fir.json index f420e841c6..23a14d5eb8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_glacial_oak.json deleted file mode 100644 index da9915b9ca..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_green_enchanted.json index cc322d31b8..e8b6ec83ee 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_holly.json index eb8bb117d9..5e73ed094c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_ironwood.json deleted file mode 100644 index 629e8ba0f7..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_jacaranda.json index 89dbbdb2bb..9add7ecdd1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_lament.json index 9212e331cb..69b142dcbf 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_mahogany.json index 0b51f2de7f..366c11946b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_mangrove.json index 0f0926a02a..386d8b6372 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_maple.json index bf99fea0bf..174efa8a72 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_nightshade.json index a623f99a1e..62878bb573 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_palm.json index ffc9bb4658..edd4e43af3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_pine.json index dc33e6c7d7..1dc4297232 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_rainbow_eucalyptus.json index ac9bac4c3e..53c9437191 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_redwood.json index 3b93f62dc2..2f9e021779 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_skyris.json index 2261a6eeca..78dc7db898 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_willow.json index d13cabb046..d9d0ec6bdc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_witch_hazel.json index cd72944121..c7f1c15b48 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_zelkova.json index 0f8cd246c8..29bfc52b41 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_crimson.json index d9f4e74629..21e9188496 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brown_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_dark_oak.json index 619ead6219..3fa9ef57aa 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brown_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_immersiveengineering_treated_wood.json index a2a442047a..1f9b58dadf 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_jungle.json index bf40b906d5..1fda485597 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brown_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_oak.json index 58dfa47d2e..ef50c442da 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brown_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_spruce.json index deeac0dc0a..6402823a07 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brown_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_warped.json index 09ef4d8d8a..01046a9e4d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_brown_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brown_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_brown_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_acacia.json index 7de601523b..9a04559216 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:cyan_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_cherry.json index dbb8d1f72d..fa0a8d2669 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_dead.json index 9ee8590b8f..3a3d34f840 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_fir.json index 5262e6b1f5..6a946b8d89 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_hellbark.json index 28dd97b650..ab8212f7d2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_jacaranda.json index 1627729cc8..ba9046f1d1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_magic.json index ee475a99c3..b30bc95f3d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_mahogany.json index 2ad8cf0122..a1bb177ce2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_palm.json index 68b7b0df0c..8417d1cfa2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_redwood.json index 738ba9d123..7ce9d0e57a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_umbran.json index 64b1376637..1839468e72 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_willow.json index d5c7d40a77..66208d436f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_birch.json index 2f8f23e5ba..c36d4836c7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:cyan_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_aspen.json index 2fd9032fa9..00ced17c7b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_baobab.json index e57351ea1a..63007a650b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_blue_enchanted.json index ac7018a901..c6e2228c0f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_bulbis.json index 8040dd035b..913e3f13a6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_cherry.json index f41f72bb75..89bdbdb9f6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_cika.json index cdf96ed2eb..fd0578e6eb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_cypress.json index 85f3f1aa8f..6fbae66907 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_ebony.json index 1d7619e075..ea526401ef 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_embur.json index 39f9ca4261..e2eea594f4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_ether.json index 1cab08424e..546856d0f9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_fir.json index b68ed2a793..f3d6e8c83f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_glacial_oak.json deleted file mode 100644 index 75689236cc..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_green_enchanted.json index 4ee65a3fba..89f50b03c6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_holly.json index 9fc08bf815..d6c5244241 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_ironwood.json deleted file mode 100644 index c176a95f99..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_jacaranda.json index e8872b5a45..3c9ebbf35d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_lament.json index 2cfa4f105e..ae594a2971 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_mahogany.json index 6521d15fac..e3a9943b64 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_mangrove.json index 6dc9521c23..e028491330 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_maple.json index 8163e82927..0271c794d3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_nightshade.json index aed1fbb6f3..f256725acd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_palm.json index 4b505753bf..67b32179d9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_pine.json index b9c52c49b6..7b10bb7281 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_rainbow_eucalyptus.json index 3d1817f8a5..e2f99319f8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_redwood.json index 6cc5eb3e0f..d010dec395 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_skyris.json index 6256ed5e23..9688a2975c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_willow.json index 5c4e007905..f818956b35 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_witch_hazel.json index aa6b5b95c0..ee57b69d64 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_zelkova.json index 17139e70a6..5b529eccf4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_crimson.json index 4aefe6a14d..0c55a8cd12 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:cyan_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_dark_oak.json index acf35c553a..caf077c072 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:cyan_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_immersiveengineering_treated_wood.json index 0f903fb1a8..7864684711 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_jungle.json index bbf42c63ee..a191795e11 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:cyan_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_oak.json index 5ee0786c95..2b9878c4b6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:cyan_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_spruce.json index c468f906dd..8ab3990dbc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:cyan_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_warped.json index 259609375e..8de1c8b45c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_cyan_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:cyan_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_cyan_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_acacia.json index b7031b1e80..38c3ee7810 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_cherry.json index eb6d4f5ecf..414440b570 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_dead.json index f854faf937..09afc3854a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_fir.json index 2aae62918a..35c4f84c17 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_hellbark.json index fc64039f8c..ad1abcff9a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_jacaranda.json index fe059886f2..1d86da06cf 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_magic.json index 6821657cc1..906e2c6cc2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_mahogany.json index b8ed7d2cba..63ecdb8d87 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_palm.json index 5243c668d9..75a41e5cff 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_redwood.json index 8f680a4737..7d9eb65718 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_umbran.json index 70028ebd73..3f5132d60c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_willow.json index 05b9d2b769..043aebaa0b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_birch.json index 10373cd9c3..dfd80febe2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_aspen.json index 114174bd46..787f2c3669 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_baobab.json index 5cdd4a8686..f861190d24 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_blue_enchanted.json index e66508d66f..6d69af5248 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_bulbis.json index 60cd378b0f..ee99db0ada 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_cherry.json index b64388dcb8..d3071353dc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_cika.json index 07530d81ca..58d10d42c9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_cypress.json index 34d234ddcf..4f6118ea13 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_ebony.json index aead84552b..40279b4584 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_embur.json index 12f7e303f4..02358fa84f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_ether.json index be5240d563..476e126b52 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_fir.json index 64a625fb5b..531d147c91 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_glacial_oak.json deleted file mode 100644 index d23d95656b..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_green_enchanted.json index 3ad88ec585..5d4abd52e9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_holly.json index 2e2977b9e3..48e20f95bb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_ironwood.json deleted file mode 100644 index 330e44f444..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_jacaranda.json index e9cee6bca6..8b6b481a60 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_lament.json index 7c4cb98300..adf23c229b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_mahogany.json index 409c7a5c36..00e286607b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_mangrove.json index 0271ff938a..43811fd9dd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_maple.json index 727c672c4f..c8c434c9d0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_nightshade.json index a90999d58b..e0987a5e47 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_palm.json index e4af7fa2c0..ed9efad589 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_pine.json index 1225a104b5..ddc2b82d24 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_rainbow_eucalyptus.json index 85c3496e7a..7c78e90f6e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_redwood.json index d654fc3b5b..89e859e3d2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_skyris.json index d0d40ad8ca..caa856e6cd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_willow.json index 41412318a5..78a3a3eef0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_witch_hazel.json index 644f3b6687..3032999837 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_zelkova.json index 18bc71cb11..ba40d4ef71 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_crimson.json index 25cd5f7ab4..c75f71cffe 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_dark_oak.json index d2b5220e6a..b7ad809d46 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_immersiveengineering_treated_wood.json index db44f03cee..46588ad605 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_jungle.json index cfcef1fbeb..23784dd501 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_oak.json index c9c039a0f5..4bf737c389 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_spruce.json index ab6e6a4eae..8bd365a454 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_warped.json index 6687fed272..c7fd2f3923 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_gray_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_gray_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_acacia.json index e255358ad1..71911eaa79 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:green_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_cherry.json index 9ebfa4bd0a..263ec0b4f3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_dead.json index 5ee4f3936d..cd40c17571 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_fir.json index 23ae6686f4..e6131b4b27 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_hellbark.json index 715e49e93f..0d853af0e6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_jacaranda.json index 17201695f5..1f50482403 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_magic.json index fed0657d0d..21f1e4a913 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_mahogany.json index ce5b99fc2e..28db737521 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_palm.json index a492357912..20da68690f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_redwood.json index 91056d66f2..b103e7de25 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_umbran.json index 8a76e68650..6fab1848c5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_willow.json index 15cbd86c71..fc7e0fdd35 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_birch.json index cbe1896e46..fd5681f74c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:green_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_aspen.json index cd3256c3ca..bdda181a43 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_baobab.json index ce32c6216f..fe694519ae 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_blue_enchanted.json index ea2c5ac489..602f091a28 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_bulbis.json index 833ed1da72..57f8e2a974 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_cherry.json index 7821bdf22a..04c1f45d3a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_cika.json index 7cfbbdb3ac..e0866233ab 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_cypress.json index c196379261..924748d1c8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_ebony.json index 56bc0e4782..061b5da54d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_embur.json index b9bf4595a4..5882c9e0a6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_ether.json index 7520877dfb..5e6cbda68e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_fir.json index 695a02bbd0..dce42883ec 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_glacial_oak.json deleted file mode 100644 index ad94fa24ff..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_green_enchanted.json index 6d041314b7..1a1e06cab1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_holly.json index 9ca341bd0e..86c62a7be2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_ironwood.json deleted file mode 100644 index 045710ba55..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_jacaranda.json index 0dbbc46e13..94372bc9af 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_lament.json index eb083929d1..0cb339bce3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_mahogany.json index 8a64782fe6..43131ff62f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_mangrove.json index f516298c9d..7318f5bb35 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_maple.json index a40562b8d9..3d1e027a5c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_nightshade.json index 0211af0904..def42ed0ec 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_palm.json index d5303bad31..063b4ffabb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_pine.json index b4ff6463f3..4d42fe3318 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_rainbow_eucalyptus.json index 95bdb18f08..020a032cc0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_redwood.json index 021116f71e..9356fa3274 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_skyris.json index d23b8599f0..304e4407a8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_willow.json index 6ca43296f4..48977ec348 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_witch_hazel.json index 1fe7734f19..e48eb9769c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_zelkova.json index 4911c023da..b95121e062 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_crimson.json index 9957b9dd72..a03d481a2c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:green_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_dark_oak.json index ce3e897c56..a86497ba69 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:green_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_immersiveengineering_treated_wood.json index d284f81af8..49cfdab7af 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_jungle.json index 4157d815d3..554cad3659 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:green_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_oak.json index a04baa273a..00169faf22 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:green_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_spruce.json index ba07767930..163e6e83ed 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:green_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_warped.json index 27f3bad61b..25f4285015 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_green_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:green_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_green_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_acacia.json index c6ddaf9ebc..d60be10882 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_cherry.json index 3f97450f27..fc7e5168fa 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_dead.json index 38f224d6e4..70bda960a6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_fir.json index 9b9f7e4b49..49bda21b03 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_hellbark.json index 01a18dd2f4..ac61b93381 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_jacaranda.json index 2c9cd8472c..18db854427 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_magic.json index ed0b94ed4e..694e4322bc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_mahogany.json index 4c49f7ce39..7b71a50b5e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_palm.json index bb568f1d43..a25c8d1579 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_redwood.json index a8fbdbac5f..f2b5c458fd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_umbran.json index 09dce5ff14..0fd65d0a86 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_willow.json index 996e869e71..abf6836f40 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_birch.json index 03b95650f4..f3cf591e82 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_aspen.json index 8b20d52d52..c24f9cbca4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_baobab.json index 04cd4502b0..81a6087e67 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_blue_enchanted.json index b64c8dd220..184f1f29d7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_bulbis.json index a1f41d37df..d08fca24f2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cherry.json index c72b59e8f6..41e8d82def 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cika.json index 4e7dde21c7..607eae5ce1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cypress.json index db93f6303a..3e5daf11f3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ebony.json index 2832498c0a..f28f0a817a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_embur.json index b571a9a858..0fa953e045 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ether.json index 5e4fbf3de3..89f026d198 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_fir.json index 76ef13b26f..c96e32b494 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_glacial_oak.json deleted file mode 100644 index 05cc656142..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_green_enchanted.json index 0057666503..26d3edebc2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_holly.json index 91ebdeb6bc..d4095b736e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ironwood.json deleted file mode 100644 index e5664d9c37..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_jacaranda.json index a29554a910..f1cbf35acd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_lament.json index 6b5f80a7fd..7083a0d78c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_mahogany.json index 823ab2c64c..35beda3766 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_mangrove.json index 0ee343d289..9150483900 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_maple.json index 03d5b26089..1afa5af615 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_nightshade.json index 79bd51f303..db54e40ddc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_palm.json index ae556b9c05..08be38c1ff 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_pine.json index b012241216..4746f5a4d2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_rainbow_eucalyptus.json index 918c2cb626..36a52bc06d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_redwood.json index 33e512e443..b1ec46b418 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_skyris.json index 14e964e330..41703c0e14 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_willow.json index db1a281ce5..f02fb9fe76 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_witch_hazel.json index ec8e249c62..1efbc18e22 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_zelkova.json index 5dd85ba393..8301cd5c27 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_crimson.json index 364013fbff..64ea9c4373 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_dark_oak.json index bab7670543..fe618ae6f5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_immersiveengineering_treated_wood.json index 553af1c29f..80c604d342 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_jungle.json index e1a113cab4..9ccc18956c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_oak.json index f85295903c..628ee416bf 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_spruce.json index fed52dbefd..c7af0293c3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_warped.json index 063274f01e..f418f8eb35 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_blue_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_blue_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_acacia.json index 3cb0ee3c1d..7e6c033872 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_cherry.json index a6a8f4ea7c..76ed788b28 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_dead.json index 19850def7a..7fa934e2a8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_fir.json index 7429d1752b..5c36fc56f0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_hellbark.json index 39acf821c8..76c731278a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_jacaranda.json index 9a8bb0f047..4c3f3eca3a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_magic.json index c6e3bd4f85..3caa8dd658 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_mahogany.json index 32c9d7a864..05b910f939 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_palm.json index bcbf7fdf6e..b879a1289a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_redwood.json index 672335d403..7a1a956bf6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_umbran.json index 9c1ee274e2..014da07b81 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_willow.json index 0c9d6e731a..1e1ae0d938 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_birch.json index 2b4951c28b..05ab792206 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_aspen.json index 23c1d6be5b..f3ef94c2bd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_baobab.json index 473039efe9..9346f9aeb1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_blue_enchanted.json index ade555b8c5..6e22a7bd21 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_bulbis.json index 35665afc17..47a5d1e835 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cherry.json index 13f8427299..bd45901b69 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cika.json index fbb45f113b..96912759e2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cypress.json index 800fcd28c9..5dac729231 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ebony.json index 8fc7116099..4b567ce9c0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_embur.json index 24298ec167..08f3bff221 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ether.json index bd048699f2..3e584e9ed1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_fir.json index f9eb79849d..9728034426 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_glacial_oak.json deleted file mode 100644 index ea25b29a99..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_green_enchanted.json index a1318fab67..e541e1ddb3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_holly.json index 01151a1de2..fd28b1ec8b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ironwood.json deleted file mode 100644 index a8cdf3c28b..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_jacaranda.json index 5a0c31e591..24816ccff7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_lament.json index 8f72deddd1..aae6448e35 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_mahogany.json index c909a1a44d..9bbcd68af6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_mangrove.json index d0aee2ee69..247ea4b0d8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_maple.json index 6d05b30c2d..e45992734a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_nightshade.json index c3380ce16c..cdaeb06da3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_palm.json index 8171f122d6..e4f480bb02 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_pine.json index 445665815e..952142147b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_rainbow_eucalyptus.json index 076bb961d9..57369abd2d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_redwood.json index c86a9811cd..4c41c0f4b1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_skyris.json index e174b9690b..c7fa6c2316 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_willow.json index 60167babae..4854d1bf8c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_witch_hazel.json index 863087e795..f99c1f07f2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_zelkova.json index 7d56780321..d70fc4ed16 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_crimson.json index cb436abd0b..202dd0246e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_dark_oak.json index 42a67d8813..f705f12173 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_immersiveengineering_treated_wood.json index 98a68b31b7..6a6e3f8758 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_jungle.json index d39e22aef4..6723124a31 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_oak.json index 4eed9f39af..0d39b75c5a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_spruce.json index 26f39a238b..3029df85bd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_warped.json index 50d1680897..60b265c305 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_light_gray_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_light_gray_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_acacia.json index c24d027a9a..8da8e3fb2e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:lime_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_cherry.json index a17c911a2b..8c71c388c6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_dead.json index 86df2393ef..67222545e5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_fir.json index 34da1321a9..6aea9787b1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_hellbark.json index e73c1ca13c..7fdf3b8bcf 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_jacaranda.json index 7bd7a4cc04..e1d22826fb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_magic.json index 4c2d580a3a..8954d68181 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_mahogany.json index f64d19e342..921e556bba 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_palm.json index a5b538788b..a7f17e3388 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_redwood.json index c4ad1235de..787f318cd8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_umbran.json index b50b3d134d..26f21b9741 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_willow.json index 37d9707e21..6141a8db84 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_birch.json index c5076e6421..e89efbadd1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:lime_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_aspen.json index 9eded7b0a2..27d193ab5d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_baobab.json index 5fda2b4553..eff5954e83 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_blue_enchanted.json index f4efbeaf97..78073668e6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_bulbis.json index ff9700b29a..4e75387455 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_cherry.json index a08d8184f1..0ef6d5f4f3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_cika.json index c92ff07718..f2ac750efd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_cypress.json index 226909b244..c4c62d64f1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_ebony.json index 9d0ec355eb..e9fe3e11b3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_embur.json index 64ad92b51e..87ef630863 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_ether.json index 28d44de4dc..8f5d233c85 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_fir.json index 3122c48cf9..ca89c640ac 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_glacial_oak.json deleted file mode 100644 index 1211d2993d..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_green_enchanted.json index 7fea1e5560..43676b7c08 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_holly.json index 3d2f58d2ee..fdd23403b7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_ironwood.json deleted file mode 100644 index a476e8d47c..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_jacaranda.json index 73973d7803..a35133d6ec 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_lament.json index 633ce6ad30..cebf9e6043 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_mahogany.json index 655f6d3f71..404ad6362d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_mangrove.json index 8fd1985976..93fd614ed3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_maple.json index faf27ddef1..f07bad6121 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_nightshade.json index 6050ae80a0..4f43f792c0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_palm.json index 3b122add2b..cecd496050 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_pine.json index 600b6b6dc3..c138dac0b4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_rainbow_eucalyptus.json index 2eedf2af1b..3fc1d1af9b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_redwood.json index 4d1e0a1181..d06e9c1a43 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_skyris.json index 4368d83fb7..40afbfc1a2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_willow.json index e30eb7cfb2..a7c5474da9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_witch_hazel.json index e833944eba..44d052893d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_zelkova.json index cbf4c148cf..08122431df 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_crimson.json index b2925d7fd9..09cf55dc11 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:lime_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_dark_oak.json index 9fa5729599..00f406964d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:lime_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_immersiveengineering_treated_wood.json index 8daf09a6de..9f08659699 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_jungle.json index 343e3a00f0..8ce506b3d7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:lime_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_oak.json index c2cec92139..e43bb5b5ff 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:lime_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_spruce.json index 91425201ad..7917d920a1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:lime_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_warped.json index 95febb6ebb..41ad14f5ca 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_lime_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:lime_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_lime_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_acacia.json index 55f4e5d4db..529623af18 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:magenta_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_cherry.json index a7b1c58e75..622c7ac77e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_dead.json index 89af2f4b97..da542d47c9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_fir.json index 33897d77c0..17447b2c73 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_hellbark.json index 148f2ee46a..293c0f9cc2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_jacaranda.json index 4a9771119b..3c129658b8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_magic.json index a2ba1f29fd..bc498cb6e9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_mahogany.json index 4294a0c0fb..7d0ef4a7c1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_palm.json index 9431237d3f..31894bec6a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_redwood.json index 07481309cf..b25f927edd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_umbran.json index 55e04b26cf..d6590ca5e0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_willow.json index d75b1afc77..e2901f6693 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_birch.json index 72c3111fea..b127fff7ee 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:magenta_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_aspen.json index 194fc6ac15..2a8441f4a6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_baobab.json index 93bc110cfb..c2cf437ccc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_blue_enchanted.json index 6a5613b345..637a91e580 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_bulbis.json index 9b04824c23..38004bdf18 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_cherry.json index 987936eaae..c04132d303 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_cika.json index ccf9a8c75b..61293c9f7f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_cypress.json index b2dc25c310..34dc8973df 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_ebony.json index cbd6dc158a..b3e0db6ebb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_embur.json index 0c56bccd45..af5286a234 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_ether.json index 0f5d1258e7..0e6755e189 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_fir.json index 669f0d8000..421ad0fe56 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_glacial_oak.json deleted file mode 100644 index c8bab5b91d..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_green_enchanted.json index 6cb5d4c69e..f9134e70c3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_holly.json index 75a4d724bc..899796e36c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_ironwood.json deleted file mode 100644 index 4335da3dc2..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_jacaranda.json index 013d74fedd..9d57bb4906 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_lament.json index f19a251f5b..84526f68c6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_mahogany.json index 2517cc5ab3..f916dee1f0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_mangrove.json index 7676ab9ff0..33c473cd09 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_maple.json index 0efcfcd88e..8d39384b0d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_nightshade.json index 0579fbbca7..a940bedd31 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_palm.json index 05ea358fd7..5446af89e2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_pine.json index 23dc2f3225..fdd2ac56ce 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_rainbow_eucalyptus.json index 09fd027f68..52cdf93cee 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_redwood.json index 6c9f222e36..a31af67fb7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_skyris.json index 5eceec07e9..cac148a74d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_willow.json index 6cc831ae4a..87b7ba03fa 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_witch_hazel.json index 6dbfb93be3..10976cbabe 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_zelkova.json index e8ddb6a0f8..78726de779 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_crimson.json index 5cf3f71046..60aa9d6c01 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:magenta_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_dark_oak.json index a998d4ebe9..1fb64efcab 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:magenta_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_immersiveengineering_treated_wood.json index c517ce4abd..975e51fa3d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_jungle.json index ac510f1b66..e22ee179a0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:magenta_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_oak.json index 6ff355284b..675c751267 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:magenta_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_spruce.json index 6ad20f846d..1220f5615c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:magenta_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_warped.json index 292f1dce75..aeb92119ca 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_magenta_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:magenta_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_magenta_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_acacia.json index 78c71830a4..8736740f1e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:orange_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_cherry.json index 27ca2bd047..175e5c2766 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_dead.json index d61c570f29..e9c099522d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_fir.json index b65e068848..c40dd86774 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_hellbark.json index 2da1ec236a..d265905043 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_jacaranda.json index 1dde122b15..f15876ab14 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_magic.json index 1f8649a618..96064f9832 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_mahogany.json index 49c3a06960..1b3ddd756f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_palm.json index 1dcf211780..c2542bbd15 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_redwood.json index a6fd0933e7..6dd07dc350 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_umbran.json index 78b7a768b6..4b19da7f27 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_willow.json index 9194f2800e..651a14252c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_birch.json index 1b7b35b6e2..2f2005d927 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:orange_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_aspen.json index 43412a4f0b..5116f6dfd3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_baobab.json index 23a0471d24..54ceca75fe 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_blue_enchanted.json index ee3882528c..e26f2c8ce7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_bulbis.json index 864c19d6aa..f1f2d93fc4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_cherry.json index 5a5184d2e1..076a334b98 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_cika.json index 7d4e3900c0..92262958f7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_cypress.json index 2d073bab02..fc22cb62e4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_ebony.json index 2a11c21b41..a3f1bfc0b4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_embur.json index 9c214dcc13..37403ef844 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_ether.json index e9da87b54a..7611b40bd2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_fir.json index 9aa2660538..e7686b8329 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_glacial_oak.json deleted file mode 100644 index b5238e145d..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_green_enchanted.json index a7689ebf19..9697136a4d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_holly.json index e3bfb6dad8..a21f44baca 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_ironwood.json deleted file mode 100644 index b41b1e00f6..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_jacaranda.json index 74dcac7435..d875592c3e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_lament.json index ca57709d13..b56e0e1330 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_mahogany.json index 2417db4fb9..d2829c8750 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_mangrove.json index e2a3024875..10bb9fdaef 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_maple.json index a0a5d938ad..abfe291f83 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_nightshade.json index 5de3c2452e..bff4fe2c7e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_palm.json index 55959a99ac..78c72bcc57 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_pine.json index c9cb5c4060..3630a68bb7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_rainbow_eucalyptus.json index 9661d91da0..35056c4768 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_redwood.json index 1e004c1a00..e71f6bc2f0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_skyris.json index 49be2d44e0..d358ce99a2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_willow.json index b88fadc867..44c206dd7d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_witch_hazel.json index 118c5dbef8..44a9ee1324 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_zelkova.json index 248390e3a6..101f03366f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_crimson.json index 00c97c0a08..e74edbb6e4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:orange_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_dark_oak.json index 21f068672e..46f6ea09da 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:orange_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_immersiveengineering_treated_wood.json index 28b75db6e6..34ebae82e5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_jungle.json index 8ab4ad0fcf..4dbda01de3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:orange_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_oak.json index e3e0b82a6b..690bd3454e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:orange_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_spruce.json index 9bad30d95a..8269ea68d3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:orange_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_warped.json index 4e1edbc508..6480aff1a2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_orange_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:orange_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_orange_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_acacia.json index 2fa1bc56e0..47da4ec4e2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:pink_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_cherry.json index 361c8bdddf..d9696cd042 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_dead.json index d778f948c7..b2f1d2128a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_fir.json index 797ac7e145..b1a1347698 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_hellbark.json index 6ace512327..c27337ce3f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_jacaranda.json index 9a95bf5f7d..f22165d6b4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_magic.json index e0d3a2dc37..d34f7f61ee 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_mahogany.json index a65257c2c3..deeaaee388 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_palm.json index 0b6ab2ce41..73f0d560a2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_redwood.json index 00e62ac55f..965e2ea243 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_umbran.json index fb237b58c0..ca53cf45c8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_willow.json index 938a7805d3..4218adee2a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_birch.json index a536cd9027..1ff33075b1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:pink_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_aspen.json index 61bf424977..7aca19dc3a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_baobab.json index aff949cc61..5728b23e7a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_blue_enchanted.json index f4a3dac08a..5f324e9a9a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_bulbis.json index e26996478a..a48012f24f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_cherry.json index a937e7cca8..533605f59d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_cika.json index 97b316e12b..305b565efa 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_cypress.json index ba2476f28b..f7c49f025c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_ebony.json index c85d647d92..319b280edb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_embur.json index 1cd5c5e54c..4c6775249e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_ether.json index e944941c9d..069e096e9e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_fir.json index 298469257a..64d0c013d7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_glacial_oak.json deleted file mode 100644 index ea712169db..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_green_enchanted.json index 2b488a0fdc..d46f5c3dc9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_holly.json index 2df327307d..7ab40929d6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_ironwood.json deleted file mode 100644 index d291a69c4f..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_jacaranda.json index 2096640171..d71e20c7a4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_lament.json index 96ae5514cb..29bbb5425c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_mahogany.json index e26a519bc5..bb3294acf4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_mangrove.json index a460d6dce4..5e7285e2a9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_maple.json index 470c58d896..141ace9efe 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_nightshade.json index 573f6a7e81..69bbd84db4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_palm.json index aac626df93..c68e25dc9c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_pine.json index a2ba2506ac..67fdbc536a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_rainbow_eucalyptus.json index 367bdc57fc..2f7ccd0952 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_redwood.json index d72ec0fd36..598f3df6ac 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_skyris.json index 5d3a163754..584065d836 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_willow.json index b402e60c77..23361b80c0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_witch_hazel.json index 4c03acc7e6..5010b8bba3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_zelkova.json index 871dcefc0a..0d9cd0bc1e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_crimson.json index 17fe9bd2a2..738f353b14 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:pink_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_dark_oak.json index 5adde04249..198724c949 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:pink_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_immersiveengineering_treated_wood.json index bd16e80713..018e101110 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_jungle.json index e16937a938..620e4dc4a5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:pink_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_oak.json index 091b4e3bb8..89a2efc8ee 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:pink_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_spruce.json index 2aef25cb8b..68e39f5155 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:pink_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_warped.json index e81fabf3c7..945c9eaf25 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_pink_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:pink_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_pink_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_acacia.json index acc48564ee..193de181ea 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:purple_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_cherry.json index bd6b6c6a42..f0cb1ac078 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_dead.json index fa14a1e950..92d3f02429 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_fir.json index d2c70c5b57..1ea254ed00 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_hellbark.json index f27e78ba08..e67ad97316 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_jacaranda.json index 90697a9744..70d7a57b31 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_magic.json index 132e9e8ec8..e96eb16178 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_mahogany.json index 1100d4564f..281021b469 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_palm.json index 17fb54bf22..238b52a11a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_redwood.json index cdb110a3e0..e79431074f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_umbran.json index f2c96e0d2d..bc914b14ea 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_willow.json index 0a4507d049..7a805c9b5d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_birch.json index a3332b06b0..7cbd76f9c2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:purple_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_aspen.json index 8c0fe8b504..f5a6300533 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_baobab.json index 8c329778c6..7ed16a2a29 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_blue_enchanted.json index 28f5a32845..05f95dbc25 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_bulbis.json index 34f6520c5f..c1e0f3505c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_cherry.json index e6486f2174..97ae8b0c12 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_cika.json index 6e2e9af712..94b08ca94b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_cypress.json index 675968225f..20980ca965 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_ebony.json index 41769950f0..a6d3888d94 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_embur.json index 2d91ad12b0..3769e354cc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_ether.json index 4499e00ab8..dc10fc5a11 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_fir.json index 2c308c060d..07130d53c8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_glacial_oak.json deleted file mode 100644 index 9b0f43a50b..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_green_enchanted.json index ca2226067e..d144bc6411 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_holly.json index b650ed9349..1743b3ea34 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_ironwood.json deleted file mode 100644 index cdc6fcc50b..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_jacaranda.json index 6fe035b1ef..a804e6dcba 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_lament.json index 393d084453..0707d78b3e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_mahogany.json index 4c4944abb5..e9953d45c2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_mangrove.json index 8dc7912ec7..165a48be91 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_maple.json index 3041c11957..9fe3c02e3f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_nightshade.json index fedcdd278c..7bbd57ddc4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_palm.json index e0bc950de9..67b08563ea 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_pine.json index ff78478e28..5eb2d70e66 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_rainbow_eucalyptus.json index 8826599af7..2d2d2ff37d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_redwood.json index bd456b926e..fec1855a8c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_skyris.json index 74c4407c64..82e6fbfd23 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_willow.json index e32cef9dd2..ad5c700a89 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_witch_hazel.json index 8790e0cd47..604841e217 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_zelkova.json index 7a4cf0eda0..8cd608b0e0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_crimson.json index 783ba53f44..453b982c87 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:purple_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_dark_oak.json index 79dfa59d37..a9dde70750 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:purple_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_immersiveengineering_treated_wood.json index 08a7070a3f..789ba6124c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_jungle.json index 8ab4e29b32..f88423e08c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:purple_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_oak.json index 441af188d2..533b7d0163 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:purple_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_spruce.json index 2310092204..d37697e87c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:purple_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_warped.json index 161accf879..cabf7b5072 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_purple_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:purple_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_purple_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_acacia.json index b2e4573820..2430f1de0e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:red_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry.json index 14902c63a7..f21968f53c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead.json index 0c80c25a23..62089c0e7d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir.json index dae93c6b72..67d6f12b6a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark.json index 2939ca97b1..aa01898bf7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda.json index e17855b246..6f5093aefc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic.json index 87e95e71ee..c91406c4bd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany.json index 9f99e2f20b..778c8d330b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm.json index 65543a15d1..4c1a177936 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood.json index 0878901ce8..a0714cddf8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran.json index c8c62b7491..2bbce317cc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow.json index 7275f6df6b..1f0f8c8f53 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_birch.json index 38a8743e04..dcee1f765a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:red_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_aspen.json index 6cce906c78..1b74958027 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_baobab.json index 003641228d..6e4e199d21 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted.json index 752a5446ee..5651293eb7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_bulbis.json index 402216368a..98480f0f3e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_cherry.json index 7883e61840..5d6fafc551 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_cika.json index 79a0364e2e..11edc223b7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_cypress.json index 383e289688..0cc27c2ef0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_ebony.json index 846ced7b8c..be0679d829 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_embur.json index f92ca07ed0..7f72c23391 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_ether.json index 0b2b85a41c..9c676d59b7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_fir.json index 18c29368f5..18a0f09805 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_glacial_oak.json deleted file mode 100644 index 64606fe3ef..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted.json index 61b2a4ed19..b8ae04020d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_holly.json index cfdf2d7451..76b6c4e638 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_ironwood.json deleted file mode 100644 index aa1196b2be..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda.json index 4decab9fee..80b66d9334 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_lament.json index d943442a31..a99f20c4cb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_mahogany.json index 010d45e7c3..d86624f74c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_mangrove.json index 28f4de9f0d..53ae7e4d9f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_maple.json index c1965b703d..491df27e6d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_nightshade.json index 2c2c8fa9ec..f23e496d7e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_palm.json index 4cc13ba63f..7b5a7e04e5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_pine.json index 492f66a07f..20a1fdde38 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus.json index f18905ce71..ec5a53a22f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_redwood.json index 7cb1b8fdd3..1f38ce55be 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_skyris.json index 746cbcc70d..c9a876cdd3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_willow.json index b616b5e8c1..2b406bce1a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel.json index ba288b0997..f9d2a4ec1f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_zelkova.json index adab47dad3..09165a4f46 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_crimson.json index 98d787ff41..458edb23c2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:red_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_dark_oak.json index 9cbf042a13..801cba628c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:red_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood.json index 6eba627ab1..3f44e98440 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_jungle.json index d29f0fc087..bac6681588 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:red_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_oak.json index cd86e9f469..e2620cd27d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:red_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_spruce.json index 85ccf9dc75..247620516f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:red_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_warped.json index 093c0a51a6..7c1424cbe0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_red_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:red_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_red_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_acacia.json index 0367a3da0f..dfaa6fdc60 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:white_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_cherry.json index 03935f9303..34fbc6f18a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_dead.json index ee0e07e60f..8080d2ad71 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_fir.json index c16dabc4c8..74a75c9163 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_hellbark.json index 305cf55e9c..f1b645c08c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_jacaranda.json index a27265ecbb..905a690d7a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_magic.json index 1d5b51b41f..d5ce9d027d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_mahogany.json index 983aae4b62..ced3051718 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_palm.json index f935271203..95b4aa3fe3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_redwood.json index 1b43efbce7..4a218665d4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_umbran.json index ce11f5bfde..b1e7ef0e56 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_willow.json index 32d9a565fa..ead48e6ec1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_birch.json index 4ee67284a8..faabb7294b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:white_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_aspen.json index 4ca52b0469..f5807ac95f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_baobab.json index 4cf7185885..413b09c135 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_blue_enchanted.json index f1f24ec8b0..a2c26e5c34 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_bulbis.json index 2bf2ca6144..f538c27fdd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_cherry.json index 431c1ef6cc..e821e97848 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_cika.json index f8e1c0a846..65d8f573c9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_cypress.json index 20eea5807b..fd4e3d5429 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_ebony.json index 3f6930c960..2af83aeb9d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_embur.json index 6f98015dba..4d32396468 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_ether.json index eb6fe225bb..ca9bef9e9a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_fir.json index f4f46406fe..bd7552febe 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_glacial_oak.json deleted file mode 100644 index 5bf9115898..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_green_enchanted.json index 44a73204e7..0b154f89b5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_holly.json index 5c46d61bfc..9d45ac6296 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_ironwood.json deleted file mode 100644 index 9b80cda599..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_jacaranda.json index 44356a6302..a4e9fabc0e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_lament.json index 6d32c4c7e1..f0a1e24fdf 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_mahogany.json index ac6a4b2110..ac01f131e0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_mangrove.json index 06dc56877d..3908b921db 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_maple.json index 70649f281d..41824919c8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_nightshade.json index db756c1de0..9524671c05 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_palm.json index 486f4316e4..d1a5777899 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_pine.json index e5d978391d..160f33f7ae 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_rainbow_eucalyptus.json index 2f008996d7..719e95154b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_redwood.json index 82f98b30a1..46c18b9a41 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_skyris.json index 6bf5066962..eadc3140e0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_willow.json index eb08a18f53..9b6c80f327 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_witch_hazel.json index 5786341663..280479e308 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_zelkova.json index d8be46f3e5..6b4abc9ad5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_crimson.json index dd5475e5c8..73a86343c0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:white_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_dark_oak.json index 1aa34394f4..a25541d5c1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:white_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_immersiveengineering_treated_wood.json index 3af1458de3..2f9826a2e1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_jungle.json index 0d6ca16cff..0cc7387a72 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:white_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_oak.json index 6bf139cd2a..293cb554b6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:white_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_spruce.json index 26ad3b2865..80093e7587 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:white_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_warped.json index 2fb72cd7f2..ef4cb24f29 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_white_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:white_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_white_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_acacia.json index 72701a9f6b..9d03139c01 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:yellow_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_cherry.json index 428665ffef..76b15d308e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_dead.json index 527e30b78d..15134f32c8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_fir.json index e296c910f5..f4f81d3b31 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_hellbark.json index 4723fa8590..78615c609f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_jacaranda.json index 7e3ea509e3..0ce4ad7f67 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_magic.json index 367a020edb..d38df15472 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_mahogany.json index f4eb52f252..1a3db46e8d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_palm.json index 170df9b74b..982324ad1f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_redwood.json index 47bc58df4a..2abfc4f5d1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_umbran.json index 3b2e989e15..6faadcaa99 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_willow.json index 651c02647e..0498ffe45a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_birch.json index 8880fd65dd..0b996b1028 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:yellow_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_aspen.json index 21825aa552..a84a624ebd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_baobab.json index 872307283d..2208450759 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_blue_enchanted.json index 30181fd711..c349cd2a82 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_bulbis.json index 21415650d1..b60dee225c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_cherry.json index 5d35a607f5..d6a6d6382f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_cika.json index f2183fe453..a6e0db76df 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_cypress.json index 5a926769a7..74d55fd3fb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_ebony.json index d69c8a3248..059e17cadb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_embur.json index 8a6f528351..83163ad2aa 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_ether.json index c69b4f15b2..4f0945f662 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_fir.json index 4db26776f2..838ec269c4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_glacial_oak.json deleted file mode 100644 index 0f7a89d79d..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_green_enchanted.json index e13e9416f4..70e57e0488 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_holly.json index 76d8b8d655..e24e0fda94 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_ironwood.json deleted file mode 100644 index 5c09ed04d5..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_jacaranda.json index 7114ca87ed..2e1ed7379b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_lament.json index 2271ee5c35..623aa70347 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_mahogany.json index 4b5333be77..87843bbb91 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_mangrove.json index a91cb26d6c..9b472086c3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_maple.json index 0df8cc1bd3..dade9f6d65 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_nightshade.json index e26d763f8a..0d180eb535 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_palm.json index 1576c425e0..3cb9a46d69 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_pine.json index 378408ed70..3649724532 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_rainbow_eucalyptus.json index 6687ebd397..fb65a68c19 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_redwood.json index fd1119898d..f6f2c18fc0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_skyris.json index 50c3a0d392..febf9e607b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_willow.json index 06213d17b6..083e2e2c45 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_witch_hazel.json index 36d061f965..c810e146b1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_zelkova.json index e00f7a8bf0..c3fb3d44c3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_crimson.json index 265a4876b5..febb4c499d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:yellow_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_dark_oak.json index dd1b009a0d..14ebf6108b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:yellow_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_immersiveengineering_treated_wood.json index d597353259..9f2023ee25 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_jungle.json index 8bcd607df4..5d4059cf5d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:yellow_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_oak.json index 5b347eddf6..185e64cddb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:yellow_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_spruce.json index e7c4bc42a1..4b8000f99e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:yellow_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_warped.json index 0bd0c47f12..dd2950911e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_padded_yellow_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:yellow_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_padded_yellow_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_acacia.json index 55cc0b8784..35cf718db3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_acacia.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:acacia_planks" + } }, - "x": { - "item": "minecraft:acacia_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_acacia", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_cherry.json index 55c3020c6e..ac5e420c62 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_cherry.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:cherry_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry", - "count": 1 + "x": { + "item": "biomesoplenty:cherry_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_cherry", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_dead.json index 0f8367572e..cb4a95bc67 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_dead.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:dead_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead", - "count": 1 + "x": { + "item": "biomesoplenty:dead_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_dead", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_fir.json index 29244cd462..79231e6c0d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_fir.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:fir_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir", - "count": 1 + "x": { + "item": "biomesoplenty:fir_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_fir", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_hellbark.json index 4fdc160ea6..a33a3d2d6a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_hellbark.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:hellbark_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark", - "count": 1 + "x": { + "item": "biomesoplenty:hellbark_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_hellbark", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda.json index 0ce9466bec..fc51fa7283 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:jacaranda_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda", - "count": 1 + "x": { + "item": "biomesoplenty:jacaranda_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_jacaranda", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_magic.json index 80331288ec..0bb4b07d2c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_magic.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:magic_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic", - "count": 1 + "x": { + "item": "biomesoplenty:magic_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_magic", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_mahogany.json index 52afb6ecd5..a5b25d8f6b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_mahogany.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:mahogany_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany", - "count": 1 + "x": { + "item": "biomesoplenty:mahogany_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_mahogany", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_palm.json index 26fadc0b2b..c24c05f899 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_palm.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:palm_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm", - "count": 1 + "x": { + "item": "biomesoplenty:palm_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_palm", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_redwood.json index 1ccdeb8dce..70dc88b6d3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_redwood.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:redwood_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood", - "count": 1 + "x": { + "item": "biomesoplenty:redwood_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_redwood", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_umbran.json index b3d11c8e40..f998caa238 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_umbran.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:umbran_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran", - "count": 1 + "x": { + "item": "biomesoplenty:umbran_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_umbran", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_willow.json index 1e34a98db2..f1c55f64ca 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_biomesoplenty_willow.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:willow_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow", - "count": 1 + "x": { + "item": "biomesoplenty:willow_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_biomesoplenty_willow", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_birch.json index 7953b3d83b..d864e7391c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_birch.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:birch_planks" + } }, - "x": { - "item": "minecraft:birch_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_birch", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_aspen.json index 263da3d666..e1a5aa6404 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_aspen.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:aspen_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen", - "count": 1 + "x": { + "item": "byg:aspen_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_aspen", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_baobab.json index bf4723a431..f60de5a4c0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_baobab.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:baobab_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab", - "count": 1 + "x": { + "item": "byg:baobab_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_baobab", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_blue_enchanted.json index 27d0ac2e92..5b0cfc6e6f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_blue_enchanted.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:blue_enchanted_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted", - "count": 1 + "x": { + "item": "byg:blue_enchanted_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_blue_enchanted", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_bulbis.json index c64b7e296c..916e8b47ea 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_bulbis.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:bulbis_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis", - "count": 1 + "x": { + "item": "byg:bulbis_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_bulbis", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_cherry.json index e14fde4be4..79afedbbdb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_cherry.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:cherry_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry", - "count": 1 + "x": { + "item": "byg:cherry_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cherry", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_cika.json index d05f78557f..2f8cad95b0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_cika.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:cika_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika", - "count": 1 + "x": { + "item": "byg:cika_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cika", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_cypress.json index c61279d2f4..0890b181d6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_cypress.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:cypress_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress", - "count": 1 + "x": { + "item": "byg:cypress_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_cypress", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_ebony.json index ffbad90d90..70208c5aa0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_ebony.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:ebony_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony", - "count": 1 + "x": { + "item": "byg:ebony_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ebony", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_embur.json index 0c56f4009d..a8d3fb648f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_embur.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:embur_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur", - "count": 1 + "x": { + "item": "byg:embur_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_embur", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_ether.json index 59383ddcc2..65e4a0fadc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_ether.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:ether_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether", - "count": 1 + "x": { + "item": "byg:ether_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ether", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_fir.json index e859fcbde6..a495cf52b1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_fir.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:fir_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir", - "count": 1 + "x": { + "item": "byg:fir_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_fir", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_glacial_oak.json deleted file mode 100644 index 45aee802ef..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_glacial_oak.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:glacial_oak_planks" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_glacial_oak", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_green_enchanted.json index 59da3a31fa..b25b8acba4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_green_enchanted.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:green_enchanted_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted", - "count": 1 + "x": { + "item": "byg:green_enchanted_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_green_enchanted", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_holly.json index 07707ac9bd..76f558261f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_holly.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:holly_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly", - "count": 1 + "x": { + "item": "byg:holly_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_holly", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_ironwood.json deleted file mode 100644 index 87c729624a..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_ironwood.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:ironwood_planks" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_ironwood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_jacaranda.json index 59efb074c9..928890c20c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_jacaranda.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:jacaranda_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda", - "count": 1 + "x": { + "item": "byg:jacaranda_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_jacaranda", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_lament.json index bd9b31cf51..284c57d88d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_lament.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:lament_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament", - "count": 1 + "x": { + "item": "byg:lament_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_lament", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_mahogany.json index 8cf86f43f9..4a3b6e57e8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_mahogany.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:mahogany_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany", - "count": 1 + "x": { + "item": "byg:mahogany_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mahogany", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_mangrove.json index bf3242e807..a97430e61f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_mangrove.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:mangrove_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove", - "count": 1 + "x": { + "item": "byg:mangrove_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_mangrove", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_maple.json index 8f95df1229..123015e65a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_maple.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:maple_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple", - "count": 1 + "x": { + "item": "byg:maple_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_maple", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_nightshade.json index dc4cbb1cff..6740fe8a05 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_nightshade.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:nightshade_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade", - "count": 1 + "x": { + "item": "byg:nightshade_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_nightshade", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_palm.json index 3c7f842d3f..4535e47216 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_palm.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:palm_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm", - "count": 1 + "x": { + "item": "byg:palm_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_palm", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_pine.json index 053ae6febe..c6052462a0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_pine.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:pine_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine", - "count": 1 + "x": { + "item": "byg:pine_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_pine", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus.json index a7d99fd09c..b825dff9df 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:rainbow_eucalyptus_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus", - "count": 1 + "x": { + "item": "byg:rainbow_eucalyptus_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_rainbow_eucalyptus", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_redwood.json index c4a827424d..8650ded55e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_redwood.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:redwood_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood", - "count": 1 + "x": { + "item": "byg:redwood_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_redwood", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_skyris.json index a1cc7836c4..4d2c4176fd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_skyris.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:skyris_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris", - "count": 1 + "x": { + "item": "byg:skyris_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_skyris", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_willow.json index 0ccc1b3401..085a3a68d1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_willow.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:willow_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow", - "count": 1 + "x": { + "item": "byg:willow_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_willow", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_witch_hazel.json index 88315ebdfd..7963898919 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_witch_hazel.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:witch_hazel_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel", - "count": 1 + "x": { + "item": "byg:witch_hazel_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_witch_hazel", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_zelkova.json index eadfc2a34a..d3b4af206a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_byg_zelkova.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:zelkova_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova", - "count": 1 + "x": { + "item": "byg:zelkova_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_byg_zelkova", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_crimson.json index 3f1ae14eb5..f74b45747e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_crimson.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:crimson_planks" + } }, - "x": { - "item": "minecraft:crimson_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_crimson", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_dark_oak.json index d8490088f7..b3649dd214 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_dark_oak.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:dark_oak_planks" + } }, - "x": { - "item": "minecraft:dark_oak_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_dark_oak", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood.json index 5d711b8173..91fc372737 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_packaged" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood", - "count": 1 + "x": { + "item": "immersiveengineering:treated_wood_packaged" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood_packaged.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood_packaged.json deleted file mode 100644 index 5d711b8173..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood_packaged.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_packaged" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood_packaged_horizontal.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood_packaged_horizontal.json deleted file mode 100644 index ec0970c8a8..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood_packaged_horizontal.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_horizontal" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood_packaged_vertical.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood_packaged_vertical.json deleted file mode 100644 index 1241e53cc7..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood_packaged_vertical.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_vertical" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_immersiveengineering_treated_wood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_jungle.json index faa7e5eda7..3f1285b971 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_jungle.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:jungle_planks" + } }, - "x": { - "item": "minecraft:jungle_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_jungle", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_oak.json index 7ee169f717..0c2de30b82 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_oak.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:oak_planks" + } }, - "x": { - "item": "minecraft:oak_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_oak", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_spruce.json index 2a5bae90eb..059a3a455f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_spruce.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:spruce_planks" + } }, - "x": { - "item": "minecraft:spruce_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_spruce", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_warped.json index 27e2b78dfa..29664eb0fe 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_back_single_warped.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "x ", + "xx", + "yy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:warped_planks" + } }, - "x": { - "item": "minecraft:warped_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_back_single_warped", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_acacia.json index da3ffb0472..d0f5b87238 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_acacia.json @@ -1,16 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "minecraft:acacia_log" + "type": "minecraft:crafting_shaped", + "pattern": [ + "xxx" + ], + "key": { + "x": { + "item": "minecraft:acacia_log" + } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_acacia", + "count": 3 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_acacia", - "count": 3 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_cherry.json index 6d18d74f71..fd81a1b57e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_cherry.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "biomesoplenty:cherry_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_cherry", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_cherry", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_dead.json index 2fae7e58c2..de973aa323 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_dead.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "biomesoplenty:dead_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_dead", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_dead", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_fir.json index a531d54196..5f0c074f81 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_fir.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "biomesoplenty:fir_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_fir", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_fir", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_hellbark.json index 2c94fd7fdb..fe1e36c613 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_hellbark.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "biomesoplenty:hellbark_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_hellbark", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_hellbark", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_jacaranda.json index 79b708bfbf..f0e70b77e1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_jacaranda.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "biomesoplenty:jacaranda_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_jacaranda", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_jacaranda", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_magic.json index 1e28b3ffef..a5268b0e74 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_magic.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "biomesoplenty:magic_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_magic", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_magic", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_mahogany.json index a8f3d3dc06..968aa12c5d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_mahogany.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "biomesoplenty:mahogany_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_mahogany", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_mahogany", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_palm.json index 6782c2ba45..55f0e2fde5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_palm.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "biomesoplenty:palm_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_palm", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_palm", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_redwood.json index 729861307e..19878a8725 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_redwood.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "biomesoplenty:redwood_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_redwood", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_redwood", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_umbran.json index 61915e822e..a1565374f9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_umbran.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "biomesoplenty:umbran_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_umbran", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_umbran", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_willow.json index 6befa01468..be02d0643e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_biomesoplenty_willow.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "biomesoplenty:willow_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_willow", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_biomesoplenty_willow", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_birch.json index 464b436490..42298487c6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_birch.json @@ -1,16 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "minecraft:birch_log" + "type": "minecraft:crafting_shaped", + "pattern": [ + "xxx" + ], + "key": { + "x": { + "item": "minecraft:birch_log" + } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_birch", + "count": 3 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_birch", - "count": 3 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_aspen.json index 9a4d2b5f7b..2d1767e96d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_aspen.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:aspen_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_aspen", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_aspen", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_baobab.json index 37541430eb..9307395a15 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_baobab.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:baobab_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_baobab", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_baobab", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_blue_enchanted.json index 8d4ab495c3..7e2da72755 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_blue_enchanted.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:blue_enchanted_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_blue_enchanted", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_blue_enchanted", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_bulbis.json index 0f1372419d..faa3601b59 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_bulbis.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "byg:bulbis_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_bulbis", - "count": 3 + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { + "tag": "byg:bulbis_stems" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_bulbis", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_cherry.json index d839020a09..f5f2d5ca07 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_cherry.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:cherry_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_cherry", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_cherry", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_cika.json index 5fce6b73d3..4b153cb2c7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_cika.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:cika_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_cika", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_cika", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_cypress.json index 96b9745aba..b654c55e56 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_cypress.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:cypress_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_cypress", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_cypress", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_ebony.json index 96e399335d..2e916ac334 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_ebony.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:ebony_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_ebony", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_ebony", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_embur.json index c0a3cddbe5..a028c2fd9d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_embur.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "byg:embur_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_embur", - "count": 3 + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { + "tag": "byg:embur_pedus" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_embur", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_ether.json index cf2f41fa99..2c88d21305 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_ether.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:ether_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_ether", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_ether", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_fir.json index 78772e3886..773d3edc78 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_fir.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:fir_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_fir", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_fir", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_glacial_oak.json deleted file mode 100644 index 640206cf25..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_glacial_oak.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "byg:glacial_oak_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_glacial_oak", - "count": 3 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_green_enchanted.json index 3e09997728..fbb8c654e5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_green_enchanted.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:green_enchanted_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_green_enchanted", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_green_enchanted", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_holly.json index 9068a68c9a..999d31781a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_holly.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:holly_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_holly", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_holly", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_ironwood.json deleted file mode 100644 index 4f2c41f8e4..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_ironwood.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "byg:ironwood_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_ironwood", - "count": 3 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_jacaranda.json index 2adb8f2bdf..7012cb21b4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_jacaranda.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:jacaranda_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_jacaranda", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_jacaranda", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_lament.json index 0051d3c54a..35b4c8e21b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_lament.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:lament_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_lament", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_lament", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_mahogany.json index cd226c7f45..3dff3fe83f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_mahogany.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:mahogany_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_mahogany", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_mahogany", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_mangrove.json index 5f99a13a00..150fbdfecc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_mangrove.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:mangrove_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_mangrove", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_mangrove", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_maple.json index 890d349083..8f21a7c041 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_maple.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:maple_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_maple", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_maple", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_nightshade.json index f487deede2..f5bb0cc976 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_nightshade.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:nightshade_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_nightshade", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_nightshade", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_palm.json index fcaa542644..151af3694b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_palm.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:palm_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_palm", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_palm", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_pine.json index 32cbcc92fd..7a60308bde 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_pine.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:pine_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_pine", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_pine", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_rainbow_eucalyptus.json index 1228836d33..0a3d6ed7ca 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_rainbow_eucalyptus.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:rainbow_eucalyptus_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_rainbow_eucalyptus", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_rainbow_eucalyptus", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_redwood.json index e0d6662a59..5a711379b2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_redwood.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:redwood_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_redwood", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_redwood", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_skyris.json index ed21ab63cf..c62e43347d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_skyris.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:skyris_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_skyris", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_skyris", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_willow.json index cb1ab23579..331b129a39 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_willow.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:willow_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_willow", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_willow", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_witch_hazel.json index 20331ecdf5..9820109561 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_witch_hazel.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:witch_hazel_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_witch_hazel", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_witch_hazel", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_zelkova.json index 0783f5a849..8973995803 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_byg_zelkova.json @@ -1,29 +1,21 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { + ], + "pattern": [ + "xxx" + ], + "key": { + "x": { "item": "byg:zelkova_log" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_zelkova", - "count": 3 } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_byg_zelkova", + "count": 3 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_crimson.json index da8adba041..319a83af37 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_crimson.json @@ -1,16 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "minecraft:crimson_stem" + "type": "minecraft:crafting_shaped", + "pattern": [ + "xxx" + ], + "key": { + "x": { + "item": "minecraft:crimson_stem" + } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_crimson", + "count": 3 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_crimson", - "count": 3 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_dark_oak.json index bab0106807..ee02999f83 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_dark_oak.json @@ -1,16 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "minecraft:dark_oak_log" + "type": "minecraft:crafting_shaped", + "pattern": [ + "xxx" + ], + "key": { + "x": { + "item": "minecraft:dark_oak_log" + } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_dark_oak", + "count": 3 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_dark_oak", - "count": 3 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_immersiveengineering_treated_wood.json deleted file mode 100644 index 39b500c16d..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_immersiveengineering_treated_wood.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "immersiveengineering:logs" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_immersiveengineering_treated_wood", - "count": 3 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_jungle.json index 752c7f8776..562ec70509 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_jungle.json @@ -1,16 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "minecraft:jungle_log" + "type": "minecraft:crafting_shaped", + "pattern": [ + "xxx" + ], + "key": { + "x": { + "item": "minecraft:jungle_log" + } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_jungle", + "count": 3 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_jungle", - "count": 3 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_oak.json index 1a60802f7c..19ef039482 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_oak.json @@ -1,16 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "minecraft:oak_log" + "type": "minecraft:crafting_shaped", + "pattern": [ + "xxx" + ], + "key": { + "x": { + "item": "minecraft:oak_log" + } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_oak", + "count": 3 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_oak", - "count": 3 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_spruce.json index 98beb384b3..d24d6ce869 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_spruce.json @@ -1,16 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "minecraft:spruce_log" + "type": "minecraft:crafting_shaped", + "pattern": [ + "xxx" + ], + "key": { + "x": { + "item": "minecraft:spruce_log" + } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_spruce", + "count": 3 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_spruce", - "count": 3 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_warped.json index dd3210b03a..1e3245292e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_log_single_warped.json @@ -1,16 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "minecraft:warped_stem" + "type": "minecraft:crafting_shaped", + "pattern": [ + "xxx" + ], + "key": { + "x": { + "item": "minecraft:warped_stem" + } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_log_single_warped", + "count": 3 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_log_single_warped", - "count": 3 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_acacia.json index f6ad2503dd..af627f9087 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:black_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_cherry.json index 7ddf7af16f..bd4095a89f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_dead.json index c0bc3e12c1..80562b5ce4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_fir.json index 2fe4dd93cf..6aa6c95106 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_hellbark.json index 3a4b607f57..b36005839e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_jacaranda.json index 069dffcceb..0fbfb23d05 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_magic.json index f6b19c5add..34de2fb1c3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_mahogany.json index e160d127cf..4c9797c7d5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_palm.json index 7ed4daedf3..abf707e83d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_redwood.json index eb1f066142..f98b709bec 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_umbran.json index d15909d5f2..f95a8e0ce2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_willow.json index a56e9eb5e5..3e3d34bb4a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_birch.json index 80b6dd71b2..19dc475e93 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:black_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_aspen.json index d0d75cb7e3..284536e6f2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_baobab.json index 5274e82d2d..76b42b34c4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_blue_enchanted.json index c80971c2b3..9ed0de2fd0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_bulbis.json index 6f6b1079a6..3deff9472c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_cherry.json index f2cf828b35..ec4f3defef 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_cika.json index f1f646fb1d..607e926b70 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_cypress.json index 22c1f3f73b..53990e7665 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_ebony.json index e99cce5b17..68ff65be00 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_embur.json index d7e146f941..b49fae0929 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_ether.json index dd2e369712..e66b4153a1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_fir.json index 7ea09fbfba..5ea4a5073d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_glacial_oak.json deleted file mode 100644 index 517e258990..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_green_enchanted.json index 012d5a27f5..6ca652790b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_holly.json index ab4355b7cb..571dd0c599 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_ironwood.json deleted file mode 100644 index 0817c118c2..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_jacaranda.json index fa488185e0..af27ca86bf 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_lament.json index 81a3659cd8..091dda7c53 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_mahogany.json index 461a15704e..41cc4eb0b0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_mangrove.json index 0e87a3668e..9cbe2de80d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_maple.json index 5cb54f730f..b8a4c373bf 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_nightshade.json index f5d6b47a25..8e1b42c093 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_palm.json index 18399b2a74..735aefaf77 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_pine.json index 0792c55139..e422ac645e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_rainbow_eucalyptus.json index ded1265cc2..4088ef679c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_redwood.json index e6a4538ed9..65699e9fa2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_skyris.json index 1d9360baf6..9fc9d047ed 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_willow.json index ae87169f31..c7d8b61cab 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_witch_hazel.json index 0e3af0177b..860f796d83 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_zelkova.json index c67ce36d12..4aebb1f132 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_crimson.json index 8cf2348a41..01c7125aab 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:black_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_dark_oak.json index dcc03870aa..6f17f47f05 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:black_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_immersiveengineering_treated_wood.json index 0b9a947e57..325802a7ef 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:black_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_jungle.json index 0ae0ff790b..8c0be39fdb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:black_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_oak.json index e01e35dc31..de22a3b4ad 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:black_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_spruce.json index 952d60cde5..4f5a47f985 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:black_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_warped.json index 64de7a431d..43523c5220 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_black_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:black_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:black_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_black_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_acacia.json index e690b8c991..764be8fa78 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_cherry.json index aa61dff8c3..61a75efc01 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_dead.json index 906a1bd3f4..de721b626e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_fir.json index ca80dd37dc..04f18d824c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_hellbark.json index 655c6eb202..f2945929ca 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_jacaranda.json index b4186c51fa..921ab4b9c8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_magic.json index 66c38754a5..3b5c5cf679 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_mahogany.json index 86465c13bb..5f23f77fbd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_palm.json index ab2d2bdaab..2fb21569b0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_redwood.json index 9a298a1861..eb8bf0e1ba 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_umbran.json index daca0c57ba..037970d5e4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_willow.json index a30fc21405..5590d249f2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_birch.json index 550df2e537..4730232b74 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_aspen.json index 1b283f3aea..3aa5e4d4f6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_baobab.json index 6422f3af56..991101804d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_blue_enchanted.json index ac9225b9cc..a416108fcc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_bulbis.json index d6e3cf9528..61c0c6f9e6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_cherry.json index b3ade5bdfe..89b6ed3931 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_cika.json index bcdc925f2d..b5173cd8b6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_cypress.json index 461c9bd59d..a1878ee110 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_ebony.json index 8df74c9cf5..36021d765a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_embur.json index 6f76ce05a8..2680d54f92 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_ether.json index b39541f581..ba5359631c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_fir.json index 3e81abae73..6398b93259 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_glacial_oak.json deleted file mode 100644 index edaca9a42b..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_green_enchanted.json index 0a08643cf3..3cfb08316b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_holly.json index 8329c476e1..5baf611566 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_ironwood.json deleted file mode 100644 index cba511fe68..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_jacaranda.json index f33e97bafe..acbde314c9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_lament.json index d1aa1cd3b3..7047dec732 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_mahogany.json index 7ed4a484a0..9ef2e5495d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_mangrove.json index 9b335d67d1..9e6a096b22 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_maple.json index 5e3e471419..e0bfe2d19f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_nightshade.json index ac84a2abee..d81e53a910 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_palm.json index 3364c286b8..96b02ac088 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_pine.json index be86e3db3c..c2ad172fee 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_rainbow_eucalyptus.json index 859069cb62..7f3bff9a54 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_redwood.json index 25942b4934..0690adfed4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_skyris.json index facc0b07d9..5026959b33 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_willow.json index 1a24c64828..8161f85245 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_witch_hazel.json index c53bbc52b7..79e499ae77 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_zelkova.json index 05977f5453..0230305d03 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_crimson.json index ccb38a66bd..4c3614ebb0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_dark_oak.json index 4402c7070b..ad938ccaa1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_immersiveengineering_treated_wood.json index 92e326a5e2..209d14b6db 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_jungle.json index cdb079ac40..18be1eb0c1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_oak.json index bf271c38fe..5089132488 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_spruce.json index 86387bb63f..72e3a50e27 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_warped.json index 08a38956ed..4b3e81222d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_blue_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_blue_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_acacia.json index 10d0bbb455..06941b8384 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brown_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_cherry.json index 9a6375c445..a6004a7097 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_dead.json index 9a95557d08..5b377d4769 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_fir.json index 14f8e1051b..4431fc05be 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_hellbark.json index aadafef4f7..284563cdc3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_jacaranda.json index 63001a6e6b..089634c3c1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_magic.json index 64f6de363e..d0f8fa6557 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_mahogany.json index 340e26cd7b..75730cf600 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_palm.json index 817e582d69..4c9c4382bc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_redwood.json index f838db06a3..7d2c1e004d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_umbran.json index e4023e7a38..9bacda2020 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_willow.json index ccadfa532b..ed4a29d38d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_birch.json index af21eef870..8b3d026bae 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brown_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_aspen.json index 65713b9bda..2b9f00d63f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_baobab.json index 0e6eaa40d8..98ecfae6a1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_blue_enchanted.json index 99ead356e8..1763eeca5a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_bulbis.json index 61b7be0d00..22bd809b3f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_cherry.json index b911c43624..6247f688d4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_cika.json index d51608114a..9c49240380 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_cypress.json index cc3c1b0268..bc9732be04 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_ebony.json index 62498d1683..c378701350 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_embur.json index 3627f161ad..f6fd98b84e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_ether.json index c8b72caead..37967deaa4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_fir.json index 0075381f94..c7b92a020c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_glacial_oak.json deleted file mode 100644 index a85a3514fc..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_green_enchanted.json index fb7ed7bd2a..5d49139a0e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_holly.json index abc62f1aa0..73276d92ac 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_ironwood.json deleted file mode 100644 index bcd4aed99a..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_jacaranda.json index 1b914b1b22..062e601863 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_lament.json index 5ebbe4e28a..4f35e3a9fa 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_mahogany.json index 502699065f..a64cb18b4d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_mangrove.json index 9bdd71daee..420791eabf 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_maple.json index ba015787f3..1800d6fc0f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_nightshade.json index aaaa87a8aa..917b9e297e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_palm.json index ac8d69bede..40883e49cb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_pine.json index 0f02af4049..af5a60805e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_rainbow_eucalyptus.json index 6e91a08d75..0e4496c4c1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_redwood.json index 99c88c70e5..b5945948c8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_skyris.json index d96c1c69f2..152eacebf1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_willow.json index 37a2ce1bea..db59079f87 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_witch_hazel.json index 34b10bc574..db37402945 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_zelkova.json index 2a3ce19250..72b995f95c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_crimson.json index a0faa664c2..1421cda8a7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brown_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_dark_oak.json index a69ed5d01a..cc766194dd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brown_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_immersiveengineering_treated_wood.json index efc6ef7073..caaac8ca81 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:brown_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_jungle.json index 2d42281863..0ec51331c9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brown_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_oak.json index 444e4fd105..ecf3b3fb35 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brown_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_spruce.json index e7782c1fdd..e6173638a2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brown_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_warped.json index e662425e03..88bf51aeaa 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_brown_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:brown_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brown_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_brown_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_acacia.json index b58d06cd15..591e71f91e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:cyan_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_cherry.json index 086e2d77a2..0dec8f1ff9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_dead.json index 462c59ae32..2c199087a8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_fir.json index 22683c0650..8f4307918e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_hellbark.json index dfffb9194a..35fd8ca42f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_jacaranda.json index 19ae571b4a..1d7a742fd3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_magic.json index 3ab238ce5a..ad0801ba04 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_mahogany.json index 8c9f09377e..1a7538da3a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_palm.json index 1905700063..762711024d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_redwood.json index e5fed4a66c..b915afb6e3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_umbran.json index 1ec538ff9c..40c47e9ef5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_willow.json index 27260573da..acd4842d5e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_birch.json index 9eae39f487..386c2514d5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:cyan_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_aspen.json index ed4b6f3e49..c7a7fa5dae 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_baobab.json index 371de487e5..2ef45b053d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_blue_enchanted.json index f0a3212653..5450e5025c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_bulbis.json index 0c25d73bcf..a8b8d72308 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_cherry.json index 01201be865..3a9bf535d7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_cika.json index c6cffb4e6c..92a4695236 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_cypress.json index a3c1690ad9..ce3efafdb6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_ebony.json index 03c9ce6b70..e5129c2002 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_embur.json index 61f872a8a5..029c884100 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_ether.json index be83abf611..cc2d979932 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_fir.json index 1fdcb5df61..d81f902b6e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_glacial_oak.json deleted file mode 100644 index a99e6e59f1..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_green_enchanted.json index 0f3862a124..df836e271f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_holly.json index aa351937eb..fa7e1bd3d2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_ironwood.json deleted file mode 100644 index 15c10f04c8..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_jacaranda.json index ebede9af7e..a8cc734fb5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_lament.json index cb29995ca8..3f557a199a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_mahogany.json index 58bb9ed179..40bb7d0d79 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_mangrove.json index f2185fb661..0ce100ecf2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_maple.json index 19e1c16938..dd0fb2226f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_nightshade.json index de99f39720..bfdbd65acc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_palm.json index 6455464ebc..b7fdc7e527 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_pine.json index b0eae10d79..1579f68d84 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_rainbow_eucalyptus.json index 31c810682c..ea2dec4757 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_redwood.json index af989ef9d7..17b76d9981 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_skyris.json index ddc88da1c6..bed4de44ab 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_willow.json index 38e1c6fc5c..09db311ce0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_witch_hazel.json index 58f4d5a071..915adf132d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_zelkova.json index 6d2046f495..b6cdd2fcd2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_crimson.json index b24bbc3b2d..f087e1daa5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:cyan_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_dark_oak.json index ae7ae6b98d..7b6c39a19e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:cyan_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_immersiveengineering_treated_wood.json index 53c15fd4e5..c6d140cf35 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:cyan_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_jungle.json index db96f1d1d7..c0c638a5ba 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:cyan_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_oak.json index 0872b18a6e..7ba77ce0ee 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:cyan_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_spruce.json index dedf092922..cd52deb4bb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:cyan_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_warped.json index ed9a1573f1..cb89cc9a2a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_cyan_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:cyan_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:cyan_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_cyan_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_acacia.json index 296bb951a3..fa08d14f72 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_cherry.json index d4e9561fa2..ceaa553dfa 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_dead.json index ffc44d78ae..ceb1b65253 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_fir.json index c7c0f7361b..b7830dc605 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_hellbark.json index 5e5051ea7a..7ae2fe5534 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_jacaranda.json index 19effaa648..67513e2336 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_magic.json index d602201f99..b0eb539fc2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_mahogany.json index b52c964db1..606844c60c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_palm.json index 600638d652..f25574d52a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_redwood.json index 5cb3b715a4..6ea3990593 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_umbran.json index f245ae85e8..3c7d82d986 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_willow.json index 3d35334f70..9770e124ef 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_birch.json index 1c276c5646..867edfb75c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_aspen.json index b9927e5102..1086dc0e04 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_baobab.json index 3b0526ba5e..6c27cbc63d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_blue_enchanted.json index 61774dd45f..35ffc82a33 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_bulbis.json index 0107a0c301..2e875c4459 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_cherry.json index a7011b21b8..e269644afc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_cika.json index 4592ce1eba..99e089cf56 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_cypress.json index b9ab4af3aa..3fdd0ebc62 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_ebony.json index 8c54373e2e..8c5a4d88b0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_embur.json index 2c2fdfc6d6..108e63aef8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_ether.json index c89455d8bd..7fa6607abf 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_fir.json index 70baf99cdb..82bd121a12 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_glacial_oak.json deleted file mode 100644 index ee8fb6ece1..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_green_enchanted.json index 9402a6ebc5..67ec7008d3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_holly.json index 37bf100f47..476c565444 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_ironwood.json deleted file mode 100644 index edfef3fbf8..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_jacaranda.json index f478c8a928..2197842cc7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_lament.json index 0c8d3f313e..e375134c62 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_mahogany.json index 07b6c058e9..6df82eace6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_mangrove.json index 22b5c9240a..7ce9b8351b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_maple.json index a8c293745e..2b0ef70791 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_nightshade.json index 231fddc651..abf5622bfe 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_palm.json index 679e5f47c1..4f35cbd54c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_pine.json index 3986b2f6fa..2f22add3c5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_rainbow_eucalyptus.json index 48c511b781..808b2d6162 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_redwood.json index 5401b014e3..2ad2c4fa10 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_skyris.json index 5d76b2ca71..6c85874501 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_willow.json index 36e375c84d..4cbc00e6c2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_witch_hazel.json index 68f5b58928..2f11d532ac 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_zelkova.json index c6654f7e18..db4fbbde81 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_crimson.json index 0f80e3e1fa..0c37681b5b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_dark_oak.json index 150be4612d..a38beee3ef 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_immersiveengineering_treated_wood.json index dcd1e26609..24be84ee9c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_jungle.json index 247d86bed1..5feafeddab 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_oak.json index a0dbb5bcd3..b746e60eff 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_spruce.json index 95ce8894f2..cad2251826 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_warped.json index 4de16b1965..2c42d70e26 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_gray_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_gray_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_acacia.json index 3103b04a7a..af015889fb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:green_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_cherry.json index 60a19ac744..41f9652fbd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_dead.json index e1894ffef8..3d16043ca0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_fir.json index 177a19d6fc..36addbc030 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_hellbark.json index dee1b66e55..63e94b29ed 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_jacaranda.json index e4797b2894..8ac403fcf5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_magic.json index a04fd51479..ea332fce99 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_mahogany.json index 377f91eee5..0e2c3c5263 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_palm.json index 491323f37a..750e70e5fa 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_redwood.json index ce664df4b7..ae0150a52c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_umbran.json index 743887fb65..aaf2d3cde1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_willow.json index d79cb6c9ed..c1b0c1f86a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_birch.json index efbbbae185..b63318fe32 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:green_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_aspen.json index f11e0cbc8b..da80e1d52d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_baobab.json index 25180efa0d..54937279d2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_blue_enchanted.json index 4fffd56ea0..3cf0c96edb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_bulbis.json index ac4704cc9d..7abb9f422f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_cherry.json index 86844a80f8..ac7da2a26e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_cika.json index 8c087146de..01ca318a16 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_cypress.json index e6a79df433..57ffaa1c60 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_ebony.json index 5467ab6b57..98d767e985 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_embur.json index ee789ff933..b5310074e6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_ether.json index 87404f95f0..a2018c357b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_fir.json index 61a929e20c..1c1067c08c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_glacial_oak.json deleted file mode 100644 index 7e7c357d94..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_green_enchanted.json index 3d8b6a116d..315946f6dc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_holly.json index 0efdedf7e8..dc24a265c1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_ironwood.json deleted file mode 100644 index 0944ea3540..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_jacaranda.json index eeea27f95a..f0983aec4b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_lament.json index 2b918dc452..a92cd61dd0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_mahogany.json index 9612a9d716..da987edd0b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_mangrove.json index e5f33c59f4..d0621b7304 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_maple.json index 674a7932ca..984fac1b2e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_nightshade.json index a337a8d7cf..f3639607ca 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_palm.json index d3971f1ab6..12976b7a02 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_pine.json index 0b13642694..ec0a26ade5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_rainbow_eucalyptus.json index 15331275cf..40b96bd919 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_redwood.json index 63b675148e..af7e1f5207 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_skyris.json index 00f73978af..dd136cc331 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_willow.json index 6d4f1ba737..6ae173b951 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_witch_hazel.json index f8dea9ad37..65d603fe6a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_zelkova.json index 46e8cf919d..71dabd4f6b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_crimson.json index 690f308bfc..1a0b4c38fe 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:green_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_dark_oak.json index 4d46b6cab8..537e5d8a48 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:green_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_immersiveengineering_treated_wood.json index 9a19a29520..ea5aca974f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:green_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_jungle.json index c1f0a63f27..9aa0a6cd54 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:green_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_oak.json index 3357ff8009..7a3a273b8a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:green_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_spruce.json index fae6eb317a..e926daa801 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:green_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_warped.json index 6751db2477..dcffe254d4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_green_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:green_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:green_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_green_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_acacia.json index 92745c88d8..e6f79abb0f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_cherry.json index a270b24d77..64d97c71d5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_dead.json index b685723dc5..aef1190ca8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_fir.json index 4c365173f3..ffda108e73 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_hellbark.json index 5b35d2a514..fced5559d3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_jacaranda.json index de43c4b9b3..8fcbcd6d36 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_magic.json index 560653cc64..081f98068e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_mahogany.json index 209b78b2ba..57c45e44a8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_palm.json index 456adc17a6..64c0e336a4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_redwood.json index 7a99bcbc6f..1f7b21ffa1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_umbran.json index e499c6518b..fe3795d4dc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_willow.json index c0412cf2b4..8e8c1d02f5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_birch.json index 4cc8ee2db8..1cbcac30eb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_aspen.json index ac36198cc3..b0e5748399 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_baobab.json index eb7a1e3189..7565533f58 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_blue_enchanted.json index 904615c5c9..a63afd94a0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_bulbis.json index d668de816f..8529e8506d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_cherry.json index 41a2e7fd69..3b27de2493 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_cika.json index 1f6b47883c..49456f5172 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_cypress.json index 228b849a1c..39e2b2a899 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_ebony.json index e5057917d3..0a95291da8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_embur.json index e2ba4ee2b1..f28aeaf4b5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_ether.json index bbbb968610..24f7f76829 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_fir.json index 6b6beb2065..122f4a494b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_glacial_oak.json deleted file mode 100644 index ecca7535a9..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_green_enchanted.json index e40ccd7bf0..aa1edc1102 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_holly.json index 61a618b100..2ebadc1f39 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_ironwood.json deleted file mode 100644 index 136d52f0e2..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_jacaranda.json index 6a3db81eb6..738eed628c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_lament.json index 1b81575375..1387b6b941 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_mahogany.json index 86c0666c3b..35a52d3f42 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_mangrove.json index c21d98fd59..212cebaa82 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_maple.json index 545cdf9273..14981598b0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_nightshade.json index 2b9b7d7a6e..522554b636 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_palm.json index 17f51c543a..641752a4db 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_pine.json index 7f0ea34abf..43fb78c4ea 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_rainbow_eucalyptus.json index 3d5bc8c191..babe5ae784 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_redwood.json index 1b3a3ca787..f4b9262d19 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_skyris.json index fdf18dad1d..da3b632db2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_willow.json index dbcce1f433..5a33abbcc6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_witch_hazel.json index c9f9d58f5b..1cbc026b53 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_zelkova.json index 5dd8af480d..a3c79aeb7f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_crimson.json index d001a947a5..8916a15272 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_dark_oak.json index 3aa98875e2..90af604cc5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_immersiveengineering_treated_wood.json index 6d5272517a..da5160891a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_blue_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_jungle.json index 3f2728ac14..0202c9b30a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_oak.json index b545d64b27..ee7f0f7d36 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_spruce.json index a951c2e30f..136c42bb92 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_warped.json index d6d94be84f..acf0fdc93b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_blue_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_blue_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_blue_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_blue_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_acacia.json index 4c3f7dd440..76c8848bf9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_cherry.json index 4571a7272c..f451fd571a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_dead.json index 4f5308096e..76777cc86e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_fir.json index 0234a3e606..90f470d048 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_hellbark.json index 98a506b46b..fb3b7d058f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_jacaranda.json index eb97734696..7f6ed96a5c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_magic.json index a6afdd0775..f911467c44 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_mahogany.json index 572757c28f..626b8d826b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_palm.json index a56c23f565..87c2f1f3cd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_redwood.json index 65c4e4d7b5..62fe640bc4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_umbran.json index 9baf6815fa..523e2a86a4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_willow.json index f3b3c6d807..7067096ee3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_birch.json index a9db0cabd3..2f059665d6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_aspen.json index cec2845f63..d2c8a579e4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_baobab.json index 4c26e55fbe..6d097ffb30 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_blue_enchanted.json index 6875e5ccf1..1024344e56 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_bulbis.json index dfa0036713..b88643d88e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_cherry.json index e3b218d566..e05f082331 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_cika.json index 8c8d9253d8..de857a4506 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_cypress.json index 45dac80f79..4acfa04d15 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_ebony.json index f9de552563..dd7761e572 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_embur.json index 84d5dd77cb..ed7e915e3f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_ether.json index 35f442c6cd..129b602c95 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_fir.json index 1caf04151f..2d08c360f9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_glacial_oak.json deleted file mode 100644 index 778ff3ec17..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_green_enchanted.json index b7447675ec..d905214430 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_holly.json index 0b1ddf0a16..f914bbfebd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_ironwood.json deleted file mode 100644 index a303a78e62..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_jacaranda.json index 7d9dba4369..18b1749b61 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_lament.json index bf9afd2be4..20f21a5b51 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_mahogany.json index c5103147aa..c707447c69 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_mangrove.json index a87c0980f1..e914705e94 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_maple.json index 66c201c46c..738c9aaa3c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_nightshade.json index 56d555f6a2..6279cea3f0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_palm.json index 72fd04f920..ebecf98d92 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_pine.json index b2df60d285..1b48bb44ab 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_rainbow_eucalyptus.json index 0e1f3068a0..ec3049ed3e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_redwood.json index 8279c3811b..f76a9b965a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_skyris.json index dffa5c1bd0..6dd806023b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_willow.json index c8771a307c..24be08dcb7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_witch_hazel.json index 21bae81a7a..7c3da82d42 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_zelkova.json index 4ac7e8aa6c..bfab2cc56a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_crimson.json index e7630acd2f..32fc8db181 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_dark_oak.json index 0a1056fe1c..2efa08c845 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_immersiveengineering_treated_wood.json index da02133049..8dc65de8bb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:light_gray_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_jungle.json index 309faeb85d..5d31847177 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_oak.json index ea72e161bf..126d8ec9f1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_spruce.json index 5c4f44fe7c..321d0e4bac 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_warped.json index 0b3c0fb6ed..77bef14682 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_light_gray_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:light_gray_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:light_gray_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_light_gray_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_acacia.json index 96f3692560..c87dc23e49 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:lime_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_cherry.json index d4a9b5926e..6a62e65482 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_dead.json index a1b0156156..dc3ae969f9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_fir.json index e57611193b..093604ff15 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_hellbark.json index a22f8a3650..4fda43b9ea 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_jacaranda.json index 9fee6ba4b9..c2f37801ea 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_magic.json index 050cca3162..ccd5699973 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_mahogany.json index 8f2ad1dbb0..92ee3ff603 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_palm.json index d3ed05621b..54ed7e6c3f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_redwood.json index 08a87d27c3..107bf2074e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_umbran.json index 5ef4ad2eef..667f9798c7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_willow.json index d93667f7de..31ab79b5c2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_birch.json index e470d6a318..5785ea9246 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:lime_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_aspen.json index 45d3b7819a..9ca8796970 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_baobab.json index dd9a8d231c..1f98df8e7e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_blue_enchanted.json index 1710956454..ea1d9b9fc7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_bulbis.json index 3cba5bc340..af55dca918 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_cherry.json index c70a35adc3..bad6f746c5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_cika.json index 3ea4654939..6b79ce027e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_cypress.json index aa32f95420..0bcec024c8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_ebony.json index 4734e2e537..81043d3f46 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_embur.json index b5d8498b3f..e37e39957e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_ether.json index fa68672bdf..ffdd9c63dc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_fir.json index 82065b5274..a78f03c7a2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_glacial_oak.json deleted file mode 100644 index 3e14e03fea..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_green_enchanted.json index 751313dd53..8683710b0c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_holly.json index 8658d28e59..fda62ae4ae 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_ironwood.json deleted file mode 100644 index 9a02ea59cc..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_jacaranda.json index 0fc541ee47..a9ef91c440 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_lament.json index e93a99adeb..535ee469f4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_mahogany.json index 422b2aa51e..d321a04a07 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_mangrove.json index 73449d5d6e..7a10568c9e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_maple.json index 04f5592d4f..68dd46b9dc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_nightshade.json index 72cb96c88d..77adf566fc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_palm.json index cbba46cd7f..102738efc8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_pine.json index c22d123544..97bdac34d8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_rainbow_eucalyptus.json index 52a362184b..0a4e825878 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_redwood.json index d83d207d66..76901a9710 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_skyris.json index 0d5f5dae3d..9cb2007361 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_willow.json index 84fdeb81d3..4ad1919228 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_witch_hazel.json index b4730cf06f..40a172f547 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_zelkova.json index edc49c1eab..7c6de5e0da 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_crimson.json index 72cc232e89..c7c820a7fc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:lime_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_dark_oak.json index d9c9f0724a..f75d9e0d1f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:lime_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_immersiveengineering_treated_wood.json index c91754713a..d248edb80a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:lime_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_jungle.json index 0b00c89bdd..1a9fa353b8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:lime_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_oak.json index 003216020a..5915c1b1ce 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:lime_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_spruce.json index 6732153804..eb56f30efc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:lime_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_warped.json index a83940c15f..a89ca299f1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_lime_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:lime_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:lime_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_lime_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_acacia.json index 5afb39d82b..4d6c64a986 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:magenta_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_cherry.json index 5cc5f77b9a..85c84bb6c7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_dead.json index 408823ff7a..42a6d76bd1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_fir.json index ecc9122672..61c5e949f1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_hellbark.json index 5c583375a1..e3072772a8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_jacaranda.json index 102ed4f9a9..ae9367f7bb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_magic.json index 6ac7bd00f9..5f345a591a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_mahogany.json index 6c1351a810..0354fdba9a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_palm.json index 4e7108cdb2..bd4c0c6c82 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_redwood.json index bb9fc3c3bf..1cd8cfe1f1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_umbran.json index 982496349a..d2a5095018 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_willow.json index 99c4d0a85e..356c31f2b4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_birch.json index 4f8f7b81c4..40b81adbce 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:magenta_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_aspen.json index 1873c36ac0..02edc8e90b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_baobab.json index 4873cb8591..a2fbb00e45 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_blue_enchanted.json index bf60603d49..bc120af69d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_bulbis.json index c7cc5e51a9..baef631abe 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_cherry.json index 27549548f5..7e102b5f22 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_cika.json index 9431ea979a..f7e9fe3368 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_cypress.json index 5c0d1ef12a..625ffd87ec 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_ebony.json index 0c166ea575..29c5c7a492 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_embur.json index b12febe81f..fc39e00ee9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_ether.json index 997dcad630..e4ffef07f7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_fir.json index bb1cff2e88..1086ec2c22 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_glacial_oak.json deleted file mode 100644 index 631725ad7f..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_green_enchanted.json index 9b66d6899d..cd54a1ccfa 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_holly.json index 927ec60d77..5b703073bb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_ironwood.json deleted file mode 100644 index a0ed62d0ac..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_jacaranda.json index 0fcc6a4299..433c52620a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_lament.json index c554cb1b61..e2ca1d82c8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_mahogany.json index 04ea806b7b..ac6c0262b8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_mangrove.json index 22b50b3b59..b10bf31c54 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_maple.json index 70f4f5df3c..5f03f951f6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_nightshade.json index 39d45a57a7..974e481ff6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_palm.json index 61c142f864..1e192b45d1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_pine.json index 9ef612234f..17c6422e98 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_rainbow_eucalyptus.json index 5249b9825d..1d1787888f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_redwood.json index 1a0e0ed454..bfdfd92734 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_skyris.json index 3378797803..8b0ef0375f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_willow.json index 5513b8c42c..9a8c7bcb8e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_witch_hazel.json index 2abf1fc55a..5413ba7bba 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_zelkova.json index b906d5f44e..5048334aab 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_crimson.json index 04f8efebe9..33978c7cd4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:magenta_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_dark_oak.json index 515acabfec..b0e6c57b9d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:magenta_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_immersiveengineering_treated_wood.json index 8d8febef3a..148330b184 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:magenta_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_jungle.json index 8dfcf58897..8a378e16b6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:magenta_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_oak.json index bba3e03435..adeb0f96e7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:magenta_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_spruce.json index e9cb0c2440..4c7b47cd58 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:magenta_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_warped.json index 7b8a2e3b69..dd7bf15322 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_magenta_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:magenta_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:magenta_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_magenta_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_acacia.json index 3959fb5569..61f1945cfa 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:orange_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_cherry.json index b0ac8676ae..373d43a155 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_dead.json index eb58e8fa22..115bcf9c73 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_fir.json index 6f0f21d94e..478a03f457 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_hellbark.json index a2d254b892..fae91a4ad5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_jacaranda.json index a6110e90b1..99739bcb45 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_magic.json index 827acb3838..4a9b0b7cda 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_mahogany.json index 141e31f858..eec70f407f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_palm.json index 0bd1e524d0..de8068be3b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_redwood.json index 81883db060..f003e57a02 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_umbran.json index 2724f8b35d..288ede9345 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_willow.json index a7f602a1bf..18b60cc508 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_birch.json index feced6731f..6acd1adbea 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:orange_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_aspen.json index c0ab4b23e1..34348044d9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_baobab.json index 42334e8261..2243ad770b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_blue_enchanted.json index d310b4e463..984029aa19 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_bulbis.json index 4cab29cdb2..6df9c840e4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_cherry.json index 7d6d9a16d5..f56e7a579b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_cika.json index ebc093707c..f201c68e52 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_cypress.json index 48f4f9fe2d..86a49fb5e3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_ebony.json index 245b7ab6b9..22815f131e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_embur.json index e6cc57f29c..7887291ebd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_ether.json index d3ec7cbefa..cdb0e3880d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_fir.json index ff5a842bf3..b86b0f5334 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_glacial_oak.json deleted file mode 100644 index 35daeabf89..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_green_enchanted.json index c8fa9a111c..c61f008bfa 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_holly.json index 04c2b3785f..3eb79861da 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_ironwood.json deleted file mode 100644 index 39596c1dae..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_jacaranda.json index 6195b6a7c2..3859859dc8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_lament.json index 76691d2149..0acbae1f9e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_mahogany.json index 2b087f7ef7..7ca68cd06e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_mangrove.json index 435f4017ea..8ad8709552 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_maple.json index cbb3010059..f23d1e1392 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_nightshade.json index 481961859b..af1b037056 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_palm.json index 2b7d20573b..050960bcfd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_pine.json index 40ccd18735..9692cf3c92 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_rainbow_eucalyptus.json index ec81cf0c9c..19ee39124f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_redwood.json index d5606d13ad..438a990743 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_skyris.json index 835bdb5ca2..cedc6d093c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_willow.json index d82e22033e..5b3ec70a99 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_witch_hazel.json index 48ece74b43..f215edafa0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_zelkova.json index 4ed5b97269..1f9f3798ed 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_crimson.json index ff4aedc878..70b86deec1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:orange_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_dark_oak.json index 67b138498a..76248e0e32 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:orange_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_immersiveengineering_treated_wood.json index 7d43dac813..23d94d59f5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:orange_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_jungle.json index be28afb7a9..494b7babe2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:orange_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_oak.json index a891d665d9..29dc4de25a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:orange_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_spruce.json index 0f6d8729bd..afaf8b43b4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:orange_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_warped.json index a39092922a..d5ee6d6401 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_orange_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:orange_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:orange_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_orange_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_acacia.json index 2f35119d5e..0be4f00d5f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:pink_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_cherry.json index 5c1edf273b..5276af2939 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_dead.json index d27631e13d..36b76610da 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_fir.json index c21c0ad9f4..6e1d4f9ef8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_hellbark.json index 9dd665c245..c5c18c0fc2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_jacaranda.json index 151672bc55..958e731ac6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_magic.json index 54902f2d92..515abc791a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_mahogany.json index 2568e7e573..df03324891 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_palm.json index 819db17f3c..12ef3915a8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_redwood.json index 8ac4e8508d..ca673dc8bd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_umbran.json index 06c62efd88..0e97287968 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_willow.json index 6b19907995..849f1d51e2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_birch.json index 8d34d474bd..9d88e803f6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:pink_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_aspen.json index aaddb033f6..ab4b18461a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_baobab.json index d7a5bca9b9..5c0f14306b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_blue_enchanted.json index d1c1875e44..816de443f4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_bulbis.json index 24b58a6c6e..ce7b61afee 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_cherry.json index da8b9cc1da..517b7b3534 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_cika.json index 2bdb09ea81..3088b11108 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_cypress.json index 6658c91b1d..49eeeb8b20 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_ebony.json index ac7efeb273..79eac5702b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_embur.json index b374b95953..7b2ab94084 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_ether.json index 2639d0886a..c32f0870bb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_fir.json index 28686366ee..3fc8f2c66c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_glacial_oak.json deleted file mode 100644 index 09fca5da81..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_green_enchanted.json index 29abbfae83..a0ae2f77a4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_holly.json index 4c4d0e9bdc..211a548125 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_ironwood.json deleted file mode 100644 index 41b0d358ac..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_jacaranda.json index db66861c71..62b5cfe6ec 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_lament.json index f4adcfd00b..f729d71e33 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_mahogany.json index 48b0f37958..30da7fc4a5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_mangrove.json index 9da11ff81e..1ba9c6d0ed 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_maple.json index 40a6521b64..7c737e8bdb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_nightshade.json index 4c394f86e9..440b7dd0b5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_palm.json index fd3ca909bc..311e80433b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_pine.json index df7b270c95..f25a31e13d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_rainbow_eucalyptus.json index 55787d965e..4bc59941c2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_redwood.json index 3bd871967c..e702b92984 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_skyris.json index 099d25b26f..7c3a851728 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_willow.json index a849f3fe47..52b8b857b0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_witch_hazel.json index d8e610ed90..34e147cebc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_zelkova.json index efbe9698e1..2ff62389d9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_crimson.json index ff44b87f8f..4d0acc1587 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:pink_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_dark_oak.json index 6770ebe2c7..d14070503f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:pink_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_immersiveengineering_treated_wood.json index bff7d08995..4c18c8317c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:pink_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_jungle.json index aace2d75d4..05481af686 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:pink_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_oak.json index 28e7fa1f71..68f42535aa 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:pink_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_spruce.json index c43999f355..4318f8fb25 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:pink_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_warped.json index a31efe2b8c..a2b1bd6ff8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_pink_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:pink_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:pink_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_pink_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_acacia.json index 11330cc31d..28987974e7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:purple_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_cherry.json index 995b54a298..2aa78a2670 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_dead.json index 58f2fe0063..91c0fed960 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_fir.json index a28f86429e..2ac7208469 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_hellbark.json index 38e4ad9bb8..b294ab9419 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_jacaranda.json index 92b15fdb50..2b8ab033dc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_magic.json index 0ca687f7dc..63b1a22e51 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_mahogany.json index a9fa245f63..53caeab7c3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_palm.json index 1ffcfcc072..651481ec0e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_redwood.json index 1ee84077ca..cc4464d2eb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_umbran.json index 865859b9f9..63e7b3b268 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_willow.json index fccbc6fed8..3e036d1ca3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_birch.json index 7114084830..b87d0515d4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:purple_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_aspen.json index 30984f6faf..ec2edf9fcd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_baobab.json index 94b678af90..d6724e37fc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_blue_enchanted.json index 1fdd775de3..17409a414e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_bulbis.json index 91f2eb0476..db87c61e2f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_cherry.json index 898e2f0193..5471c55841 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_cika.json index 0c53bd8819..2f4a5eabb9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_cypress.json index 2b20d08bee..7d266b3a16 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_ebony.json index a5c080ea5a..e03d744104 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_embur.json index bdf394a9ab..8b2a7d6945 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_ether.json index 1d8a6f9df7..ce1d11639e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_fir.json index 1a2392d103..1857882ce2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_glacial_oak.json deleted file mode 100644 index dc8f7f5186..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_green_enchanted.json index 65bb7b75cd..a456f83df3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_holly.json index bf42ccc919..be732d4919 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_ironwood.json deleted file mode 100644 index e81c089e28..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_jacaranda.json index d8143bca5b..607a868a7c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_lament.json index 50c66ed7e0..e65ddc9846 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_mahogany.json index 3d9f2999dc..71f245ff00 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_mangrove.json index be6d5546db..c82f1d433d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_maple.json index 7c44daa099..3867da7bbb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_nightshade.json index 89a00ec585..e1cdc5b0f2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_palm.json index 0a16bb7bcc..7a0613ba93 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_pine.json index 700f40d909..0a78fd6489 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_rainbow_eucalyptus.json index 53fb9549f5..3edef7ee89 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_redwood.json index c855daabd2..2dc0eb55f6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_skyris.json index 8af01f27b1..ee2fd5cdcc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_willow.json index 16b093beed..e518b2ef8c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_witch_hazel.json index 569a9e2aa2..5e42437370 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_zelkova.json index 0ace1825ec..2c28ef319e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_crimson.json index 4ac01f5103..58d6ce0307 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:purple_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_dark_oak.json index 1bd4c0a2ae..3106ec3792 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:purple_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_immersiveengineering_treated_wood.json index 60ca636ac1..1222b57af3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:purple_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_jungle.json index ff7a10970a..350981d63e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:purple_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_oak.json index 8b1dc7e619..4b7f9927ed 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:purple_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_spruce.json index 49970d2025..12d340098b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:purple_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_warped.json index 11040c74eb..e5bc1cb23b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_purple_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:purple_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:purple_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_purple_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_acacia.json index 8065844920..b8e6653afe 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:red_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry.json index e44b31ef93..06e9ebdedf 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead.json index 50086acd37..009fa89821 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir.json index 9c0289a211..1f74f7b2dc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark.json index 12a794c605..2a94aadfe5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda.json index cae6235996..983073aa6e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic.json index cd3b84a286..6c4c95f55c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany.json index fe4918ef09..60b2d233cb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm.json index f6d34dfc2c..cde907c845 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood.json index 66ed1e2f93..9d47b6c2b2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran.json index 0c41fe7a20..dba9cffb34 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow.json index 12a974d25e..ff0d5e2fdb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_birch.json index 6e95b92a42..85c322a93d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:red_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_aspen.json index f6e61e7893..fea4a04d7e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_baobab.json index 441f97ce2b..de1c82f6e3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted.json index c4f8458868..7c0c32c868 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_bulbis.json index 110906525a..d9a85289be 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_cherry.json index 8bb489d050..1e53c8216d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_cika.json index 71ed6c994f..112168f7c2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_cypress.json index b56b0fcea7..42bdafbc7e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_ebony.json index 16094f7ccc..a16ee388b2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_embur.json index 87898a4a9e..95ecd1a8ac 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_ether.json index 426b6b68d0..14757083cd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_fir.json index 0fcee6b7ea..cae1a178e1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_glacial_oak.json deleted file mode 100644 index 8f1710fb27..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_green_enchanted.json index af25e9c403..45170a5af0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_holly.json index c474a39a72..d85f2ecdb7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_ironwood.json deleted file mode 100644 index 3cb953b7c7..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_jacaranda.json index f531443b92..570b35de6c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_lament.json index a0c93421c3..913e738835 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_mahogany.json index fb473eef17..17586e392d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_mangrove.json index 52cf0dacd2..fd4a224516 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_maple.json index ff24fd9c29..0cfb2e3e46 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_nightshade.json index af2c7a51a5..1e724acc0d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_palm.json index bd23e4d665..e68d2d6a8c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_pine.json index f25b4fa887..e486ce53cb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus.json index 2f703f2c4b..9e65533519 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_redwood.json index 88c1b2f1f8..6d9963e4de 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_skyris.json index a8015204ef..b33f2b127c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_willow.json index 9b80712683..c36eae9f4d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_witch_hazel.json index 568142c66e..cc2115f31e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_zelkova.json index ea49baf5be..06fead3c10 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_crimson.json index 71b48a19a7..6165f82735 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:red_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_dark_oak.json index 74115e56de..109d7e8961 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:red_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood.json index 717ec18d9d..9e93b0d5a8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:red_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_jungle.json index 4a3a72ce6b..66c1c8e502 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:red_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_oak.json index c80d3c0b5b..8c45245973 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:red_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_spruce.json index 2e5bd53037..e7ade52cd4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:red_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_warped.json index 3f5f4ba860..bc8934e1c1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_red_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:red_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:red_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_red_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_acacia.json index a0c93b4b2b..c53d923b86 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:white_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_cherry.json index 7043c01766..3a9e1828b1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_dead.json index 8de1af8ab6..b4c7c492eb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_fir.json index dd7bf89f1b..b08400d420 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_hellbark.json index 0df02e3fdd..e42efb5bb6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_jacaranda.json index 6d7bcb817a..99b67463e1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_magic.json index 5d81800e0b..96428a5dbe 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_mahogany.json index 4af24122b6..30e1940ddf 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_palm.json index bad0cb410f..eba35d21eb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_redwood.json index 9905a14ee8..c4a82aec71 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_umbran.json index f8a9c618b3..1ddeef623e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_willow.json index 379ebdd2b9..bee7db8fb8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_birch.json index d33ae22090..01c9a87f1b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:white_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_aspen.json index 1fc33b414f..2a95cb4e1d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_baobab.json index 59b0e665e6..640f1ea6fa 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_blue_enchanted.json index 4d9885276b..cfd212debd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_bulbis.json index 339733dd2e..62638e254c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_cherry.json index 804e82ee21..b17916fec2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_cika.json index dff302a7f2..807c2c0673 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_cypress.json index d9ba9e56c8..a358190cd8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_ebony.json index a2c52e37d4..71194bec32 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_embur.json index 32ff3b206f..ce88bd02be 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_ether.json index bd5f27f751..2921ddfa17 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_fir.json index 0d4765da4a..571e73dc1e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_glacial_oak.json deleted file mode 100644 index 7a890c4977..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_green_enchanted.json index bb43a6bcc4..8edc3378fd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_holly.json index 5248992897..e0ab94dba4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_ironwood.json deleted file mode 100644 index 847bbdd377..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_jacaranda.json index cfd4c49fdb..03a922b666 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_lament.json index 63f4b8fba8..726ad0bffd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_mahogany.json index f439792f9f..79b813c38b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_mangrove.json index cdbf7aac82..7f272f8de4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_maple.json index e46a784269..71ab99e525 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_nightshade.json index 74d4a1d8d5..79c4f5de38 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_palm.json index 877f4b01a8..08bb006f9a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_pine.json index 2190470a25..a9f66ad0d3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_rainbow_eucalyptus.json index 9797d2177d..5b18a650d8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_redwood.json index 4b79d60e25..756f7959af 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_skyris.json index 5f9e7e86a2..e615b78ba1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_willow.json index d7df8b337e..616ea1857b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_witch_hazel.json index 00ac525039..108c2ccb03 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_zelkova.json index 6753f5de72..5f4fc4cc4f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_crimson.json index 454b1319e8..8a35e90632 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:white_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_dark_oak.json index f2398fd384..73b7470f41 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:white_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_immersiveengineering_treated_wood.json index 4da133cc76..22376a58ce 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:white_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_jungle.json index 492eb6298e..39862514b2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:white_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_oak.json index 8617885b90..8ac540643f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:white_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_spruce.json index 9082f21bee..cfa57731a4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:white_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_warped.json index e3379562b1..2dfc7d4552 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_white_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:white_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:white_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_white_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_acacia.json index 8d83f936b0..c22e92f82a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:yellow_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_cherry.json index 1dc40bdaf7..d3cae0e2d9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_dead.json index 2ab727b0f5..bc305da1eb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_fir.json index b8920c05c4..3c8254ee37 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_hellbark.json index 5f0e866e0f..f134bcbaed 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_jacaranda.json index c33fc02d6e..2eab15980b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_magic.json index a877f2f495..fdab84953f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_mahogany.json index 29f19f1484..1739106a44 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_palm.json index 7108fa4f32..e430be2a16 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_redwood.json index a3de686e79..387d155f22 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_umbran.json index 8d20f0771c..76998003cf 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_willow.json index e09d1052f0..f5ec47ed6a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_birch.json index d7243529ef..abd278e966 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:yellow_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_aspen.json index 4bc8a568a8..751321dc8c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_baobab.json index 9ff4093aa9..08ff0fe56e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_blue_enchanted.json index 3c7a1671b2..d62b3e1f2d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_bulbis.json index 6cdfa22f88..abe8131fbe 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_cherry.json index 574a85785f..5b51fcdd87 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_cika.json index c9d2252bda..a93d06a4e9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_cypress.json index 93bdb54599..1abd1d6ac9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_ebony.json index 4ba5e8c800..8f76f133b2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_embur.json index 77576621a1..5c858e4284 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_ether.json index a4a2d1d424..14db85ab1a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_fir.json index 03374ac404..69c6933631 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_glacial_oak.json deleted file mode 100644 index cfdfc07d7e..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_green_enchanted.json index 6e9d52956e..f4136e2c39 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_holly.json index 674382073b..151afc7e73 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_ironwood.json deleted file mode 100644 index 727c3576a9..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_jacaranda.json index 775418202a..221c815ee8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_lament.json index b7bc113d1c..e94b28f82d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_mahogany.json index cb326e9daf..ddfa1e9c4d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_mangrove.json index 7adc41f021..2be41d341c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_maple.json index 3a7b81d3de..fda7a377b6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_nightshade.json index bf999f6319..5d1afd952d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_palm.json index 0d82346bbd..9934f3498a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_pine.json index 59787af097..0aff28b43b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_rainbow_eucalyptus.json index dcacd099f6..a765e7ff95 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_redwood.json index fafa8ff99c..4c7bdbe0d0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_skyris.json index ad23adc6bb..9ce61aab5e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_willow.json index 95e15dc882..f101b3b2ad 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_witch_hazel.json index 8b7d277145..e13a2d8952 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_zelkova.json index 1216827414..1b8cf553a7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_crimson.json index e749712823..2284d56890 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:yellow_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_dark_oak.json index b556d783bf..60a767ca70 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:yellow_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_immersiveengineering_treated_wood.json index 8baf4d3c3b..b3707b1199 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:yellow_carpet" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_jungle.json index 52737aae2c..c92b30cbb3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:yellow_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_oak.json index 9489276b1a..9e93385132 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:yellow_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_spruce.json index e35c5b9dd0..484c246080 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:yellow_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_warped.json index 4c3b4a05c6..b03525a03a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_padded_yellow_single_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:yellow_carpet" - }, - { - "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:yellow_carpet" + }, + { + "item": "ironagefurniture:chair_wood_ironage_bench_single_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_padded_yellow_single_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_acacia.json index dc4515465f..ea13eb70b8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_acacia.json @@ -1,20 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:acacia_planks" + } }, - "x": { - "item": "minecraft:acacia_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_acacia", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_cherry.json index a99e07ce3f..12693dfd4a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_cherry.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:cherry_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry", - "count": 1 + "x": { + "item": "biomesoplenty:cherry_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_cherry", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_dead.json index dbd2d1de3b..ab5b283c0b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_dead.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:dead_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead", - "count": 1 + "x": { + "item": "biomesoplenty:dead_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_dead", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_fir.json index 1f766b1730..a7ec4e98e7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_fir.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:fir_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir", - "count": 1 + "x": { + "item": "biomesoplenty:fir_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_fir", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_hellbark.json index 535cde0c06..1040a3741f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_hellbark.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:hellbark_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark", - "count": 1 + "x": { + "item": "biomesoplenty:hellbark_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_hellbark", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_jacaranda.json index d506d6d311..cfeb12080a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_jacaranda.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:jacaranda_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda", - "count": 1 + "x": { + "item": "biomesoplenty:jacaranda_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_jacaranda", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_magic.json index 6005b2c637..1dd3069f50 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_magic.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:magic_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic", - "count": 1 + "x": { + "item": "biomesoplenty:magic_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_magic", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_mahogany.json index cacb2c6d1a..7bd2e9a373 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_mahogany.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:mahogany_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany", - "count": 1 + "x": { + "item": "biomesoplenty:mahogany_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_mahogany", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_palm.json index fc6b52a56d..6d26a4549a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_palm.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:palm_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm", - "count": 1 + "x": { + "item": "biomesoplenty:palm_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_palm", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_redwood.json index 817b07ed6b..d96c44b285 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_redwood.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:redwood_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood", - "count": 1 + "x": { + "item": "biomesoplenty:redwood_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_redwood", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_umbran.json index 009a111e66..a7c2814684 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_umbran.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:umbran_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran", - "count": 1 + "x": { + "item": "biomesoplenty:umbran_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_umbran", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_willow.json index 946653694e..2802365004 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_biomesoplenty_willow.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:willow_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow", - "count": 1 + "x": { + "item": "biomesoplenty:willow_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_biomesoplenty_willow", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_birch.json index 44f69c2372..62948972a7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_birch.json @@ -1,20 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:birch_planks" + } }, - "x": { - "item": "minecraft:birch_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_birch", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_birch", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_aspen.json index 6eafd862dc..4bc4fe420b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_aspen.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:aspen_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen", - "count": 1 + "x": { + "item": "byg:aspen_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_aspen", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_baobab.json index babccba1c0..ffef2f3c41 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_baobab.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:baobab_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab", - "count": 1 + "x": { + "item": "byg:baobab_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_baobab", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_blue_enchanted.json index f71f0eb31f..9f243ef9dc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_blue_enchanted.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:blue_enchanted_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted", - "count": 1 + "x": { + "item": "byg:blue_enchanted_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_blue_enchanted", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_bulbis.json index 074eae7422..d28233b548 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_bulbis.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:bulbis_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis", - "count": 1 + "x": { + "item": "byg:bulbis_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_bulbis", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_cherry.json index 1d5ab25ee1..37c19b6b61 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_cherry.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:cherry_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry", - "count": 1 + "x": { + "item": "byg:cherry_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cherry", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_cika.json index 5e2f955460..b6c7af0b4e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_cika.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:cika_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika", - "count": 1 + "x": { + "item": "byg:cika_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cika", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_cypress.json index 6aa7b25f11..b9c0d71693 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_cypress.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:cypress_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress", - "count": 1 + "x": { + "item": "byg:cypress_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_cypress", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_ebony.json index 3743d941b5..374478d4a8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_ebony.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:ebony_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony", - "count": 1 + "x": { + "item": "byg:ebony_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ebony", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_embur.json index f156117ea0..34a6024bd0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_embur.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:embur_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur", - "count": 1 + "x": { + "item": "byg:embur_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_embur", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_ether.json index 740ef12500..6ac35a6c53 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_ether.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:ether_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether", - "count": 1 + "x": { + "item": "byg:ether_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ether", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_fir.json index 106efa9c75..8bea536e8c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_fir.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:fir_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir", - "count": 1 + "x": { + "item": "byg:fir_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_fir", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_glacial_oak.json deleted file mode 100644 index adc1b44c6f..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_glacial_oak.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:glacial_oak_planks" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_glacial_oak", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_green_enchanted.json index c99d62a863..355486d0a0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_green_enchanted.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:green_enchanted_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted", - "count": 1 + "x": { + "item": "byg:green_enchanted_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_green_enchanted", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_holly.json index 30c3a66e9b..c2b1ecfcf0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_holly.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:holly_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly", - "count": 1 + "x": { + "item": "byg:holly_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_holly", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_ironwood.json deleted file mode 100644 index 0f9d047f9d..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_ironwood.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:ironwood_planks" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_ironwood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_jacaranda.json index e39109a537..a9234ea3ac 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_jacaranda.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:jacaranda_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda", - "count": 1 + "x": { + "item": "byg:jacaranda_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_jacaranda", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_lament.json index 386938a5ea..712d858ac8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_lament.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:lament_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament", - "count": 1 + "x": { + "item": "byg:lament_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_lament", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_mahogany.json index a14f348b0b..dc0f1d48fb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_mahogany.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:mahogany_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany", - "count": 1 + "x": { + "item": "byg:mahogany_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mahogany", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_mangrove.json index 0ffe46f0fe..265d12a723 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_mangrove.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:mangrove_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove", - "count": 1 + "x": { + "item": "byg:mangrove_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_mangrove", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_maple.json index 8c9586f2ab..13cfb9a7e4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_maple.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:maple_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple", - "count": 1 + "x": { + "item": "byg:maple_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_maple", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_nightshade.json index 29c93d4504..4146902318 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_nightshade.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:nightshade_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade", - "count": 1 + "x": { + "item": "byg:nightshade_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_nightshade", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_palm.json index 2a3fb4bfb8..c0d18e24de 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_palm.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:palm_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm", - "count": 1 + "x": { + "item": "byg:palm_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_palm", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_pine.json index 34b502dbb6..e10405a8a3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_pine.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:pine_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine", - "count": 1 + "x": { + "item": "byg:pine_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_pine", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_rainbow_eucalyptus.json index c39827cd2b..6559497534 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_rainbow_eucalyptus.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:rainbow_eucalyptus_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus", - "count": 1 + "x": { + "item": "byg:rainbow_eucalyptus_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_rainbow_eucalyptus", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_redwood.json index ead994921b..6ba77a84f7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_redwood.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:redwood_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood", - "count": 1 + "x": { + "item": "byg:redwood_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_redwood", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_skyris.json index adfd9cdec6..27436cf3ee 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_skyris.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:skyris_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris", - "count": 1 + "x": { + "item": "byg:skyris_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_skyris", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_willow.json index 14fa377339..3ad7a2bb3f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_willow.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:willow_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow", - "count": 1 + "x": { + "item": "byg:willow_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_willow", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_witch_hazel.json index b5300f7955..37e5bf5137 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_witch_hazel.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:witch_hazel_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel", - "count": 1 + "x": { + "item": "byg:witch_hazel_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_witch_hazel", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_zelkova.json index 90f5046843..f20b97593f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_byg_zelkova.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:zelkova_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova", - "count": 1 + "x": { + "item": "byg:zelkova_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_byg_zelkova", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_crimson.json index 176ee54e0c..174f40386f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_crimson.json @@ -1,20 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:crimson_planks" + } }, - "x": { - "item": "minecraft:crimson_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_crimson", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_dark_oak.json index c33f53de42..bedc1c5135 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_dark_oak.json @@ -1,20 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:dark_oak_planks" + } }, - "x": { - "item": "minecraft:dark_oak_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_dark_oak", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_immersiveengineering_treated_wood.json index 2be6eda775..82f68d79ba 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_immersiveengineering_treated_wood.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { + ], + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_packaged" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood", - "count": 1 + "x": { + "item": "immersiveengineering:treated_wood_packaged" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_immersiveengineering_treated_wood_packaged.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_immersiveengineering_treated_wood_packaged.json deleted file mode 100644 index 2be6eda775..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_immersiveengineering_treated_wood_packaged.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_packaged" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_immersiveengineering_treated_wood_packaged_horizontal.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_immersiveengineering_treated_wood_packaged_horizontal.json deleted file mode 100644 index 0b1bbf1533..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_immersiveengineering_treated_wood_packaged_horizontal.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_horizontal" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_immersiveengineering_treated_wood_packaged_vertical.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_immersiveengineering_treated_wood_packaged_vertical.json deleted file mode 100644 index 71dab92de2..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_immersiveengineering_treated_wood_packaged_vertical.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_vertical" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_immersiveengineering_treated_wood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_jungle.json index abf5168bcb..27b501fbf3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_jungle.json @@ -1,20 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:jungle_planks" + } }, - "x": { - "item": "minecraft:jungle_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_jungle", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_oak.json index 63e061243c..ce1ec4888f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_oak.json @@ -1,20 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:oak_planks" + } }, - "x": { - "item": "minecraft:oak_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_oak", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_oak", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_spruce.json index a298c71e5a..d02a19869c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_spruce.json @@ -1,20 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:spruce_planks" + } }, - "x": { - "item": "minecraft:spruce_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_spruce", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_warped.json index c3759a91a9..5031c8ef16 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_bench_single_warped.json @@ -1,20 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "xx", - "yy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "xx", + "yy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:warped_planks" + } }, - "x": { - "item": "minecraft:warped_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_bench_single_warped", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_bench_single_warped", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_acacia.json index 91bd3b85fe..651e0bcc2a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_acacia.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:acacia_planks" + } }, - "x": { - "item": "minecraft:acacia_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_acacia", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_acacia", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_cherry.json index fbd8dd737b..38c0bb33d9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_cherry.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:cherry_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_cherry", - "count": 1 + "x": { + "item": "biomesoplenty:cherry_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_cherry", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_dead.json index 3062bbbe9a..7e6057e888 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_dead.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:dead_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_dead", - "count": 1 + "x": { + "item": "biomesoplenty:dead_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_dead", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_fir.json index 174c82175d..ee32bb5d7e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_fir.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:fir_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_fir", - "count": 1 + "x": { + "item": "biomesoplenty:fir_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_fir", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_hellbark.json index 025ee05c81..b345cc5bc1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_hellbark.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:hellbark_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_hellbark", - "count": 1 + "x": { + "item": "biomesoplenty:hellbark_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_hellbark", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_jacaranda.json index ec5c048387..05b06fc1cb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_jacaranda.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:jacaranda_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_jacaranda", - "count": 1 + "x": { + "item": "biomesoplenty:jacaranda_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_jacaranda", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_magic.json index cff62db144..aabf0d2ffb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_magic.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:magic_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_magic", - "count": 1 + "x": { + "item": "biomesoplenty:magic_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_magic", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_mahogany.json index 5cc8770022..56a94b5fac 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_mahogany.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:mahogany_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_mahogany", - "count": 1 + "x": { + "item": "biomesoplenty:mahogany_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_mahogany", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_palm.json index 63682a4577..c40f08f33e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_palm.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:palm_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_palm", - "count": 1 + "x": { + "item": "biomesoplenty:palm_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_palm", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_redwood.json index 843be51709..f38f436c0b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_redwood.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:redwood_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_redwood", - "count": 1 + "x": { + "item": "biomesoplenty:redwood_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_redwood", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_umbran.json index be9fd7ca13..31d84f76e0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_umbran.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:umbran_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_umbran", - "count": 1 + "x": { + "item": "biomesoplenty:umbran_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_umbran", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_willow.json index dcb575eabf..c29bb75b43 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_biomesoplenty_willow.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:willow_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_willow", - "count": 1 + "x": { + "item": "biomesoplenty:willow_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_willow", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_birch.json index c90b4f0397..c8db0b85ee 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_birch.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:birch_planks" + } }, - "x": { - "item": "minecraft:birch_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_birch", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_birch", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_aspen.json index d877a41700..f7b1add2f7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_aspen.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:aspen_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_aspen", - "count": 1 + "x": { + "item": "byg:aspen_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_aspen", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_baobab.json index 06767be4b3..4f056fef1f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_baobab.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:baobab_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_baobab", - "count": 1 + "x": { + "item": "byg:baobab_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_baobab", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_blue_enchanted.json index edd0dd151d..01e07b71a3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_blue_enchanted.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:blue_enchanted_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_blue_enchanted", - "count": 1 + "x": { + "item": "byg:blue_enchanted_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_blue_enchanted", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_bulbis.json index 31cfec9cb1..bc2dd712fd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_bulbis.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:bulbis_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_bulbis", - "count": 1 + "x": { + "item": "byg:bulbis_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_bulbis", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_cherry.json index aa9944f96a..f59704c227 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_cherry.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:cherry_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_cherry", - "count": 1 + "x": { + "item": "byg:cherry_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_cherry", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_cika.json index a30eef7c8f..70310b4949 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_cika.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:cika_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_cika", - "count": 1 + "x": { + "item": "byg:cika_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_cika", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_cypress.json index ec34f6fbf1..e8e957d71f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_cypress.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:cypress_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_cypress", - "count": 1 + "x": { + "item": "byg:cypress_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_cypress", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_ebony.json index f45bed473d..d5669cc90a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_ebony.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:ebony_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_ebony", - "count": 1 + "x": { + "item": "byg:ebony_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_ebony", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_embur.json index 5b00a82099..6f21abee36 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_embur.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:embur_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_embur", - "count": 1 + "x": { + "item": "byg:embur_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_embur", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_ether.json index dc1ec07c6e..e059bc4339 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_ether.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:ether_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_ether", - "count": 1 + "x": { + "item": "byg:ether_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_ether", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_fir.json index 9315499b06..5f90bde9d9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_fir.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:fir_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_fir", - "count": 1 + "x": { + "item": "byg:fir_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_fir", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_glacial_oak.json deleted file mode 100644 index 0538c246c9..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_glacial_oak.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:glacial_oak_planks" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_glacial_oak", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_green_enchanted.json index 711fdddfc6..13d132c4a8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_green_enchanted.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:green_enchanted_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_green_enchanted", - "count": 1 + "x": { + "item": "byg:green_enchanted_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_green_enchanted", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_holly.json index fee09e0bc6..e3757e1462 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_holly.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:holly_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_holly", - "count": 1 + "x": { + "item": "byg:holly_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_holly", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_ironwood.json deleted file mode 100644 index fa2778bf45..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_ironwood.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:ironwood_planks" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_ironwood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_jacaranda.json index 0a15cdddf1..994cffd7b1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_jacaranda.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:jacaranda_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_jacaranda", - "count": 1 + "x": { + "item": "byg:jacaranda_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_jacaranda", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_lament.json index de47330d07..ebde08f9bb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_lament.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:lament_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_lament", - "count": 1 + "x": { + "item": "byg:lament_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_lament", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_mahogany.json index 9654c1b17c..8e88660ea5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_mahogany.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:mahogany_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_mahogany", - "count": 1 + "x": { + "item": "byg:mahogany_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_mahogany", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_mangrove.json index fd7b2bc882..23dc4741d5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_mangrove.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:mangrove_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_mangrove", - "count": 1 + "x": { + "item": "byg:mangrove_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_mangrove", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_maple.json index 9604a59229..1a28f61869 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_maple.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:maple_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_maple", - "count": 1 + "x": { + "item": "byg:maple_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_maple", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_nightshade.json index 6115d36a18..8555cda43c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_nightshade.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:nightshade_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_nightshade", - "count": 1 + "x": { + "item": "byg:nightshade_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_nightshade", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_palm.json index 9fd19b2fed..9c495e7ebe 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_palm.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:palm_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_palm", - "count": 1 + "x": { + "item": "byg:palm_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_palm", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_pine.json index b4f10ab579..fec10aa47f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_pine.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:pine_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_pine", - "count": 1 + "x": { + "item": "byg:pine_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_pine", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_rainbow_eucalyptus.json index 00d2f4e51b..62d8fc4360 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_rainbow_eucalyptus.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:rainbow_eucalyptus_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_rainbow_eucalyptus", - "count": 1 + "x": { + "item": "byg:rainbow_eucalyptus_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_rainbow_eucalyptus", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_redwood.json index b18352d50a..9929605f31 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_redwood.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:redwood_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_redwood", - "count": 1 + "x": { + "item": "byg:redwood_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_redwood", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_skyris.json index 711ebf8812..245b4b6498 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_skyris.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:skyris_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_skyris", - "count": 1 + "x": { + "item": "byg:skyris_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_skyris", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_willow.json index 6f51e8f57b..8bb750f230 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_willow.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:willow_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_willow", - "count": 1 + "x": { + "item": "byg:willow_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_willow", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_witch_hazel.json index bdced3e4f0..a75e5165ea 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_witch_hazel.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:witch_hazel_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_witch_hazel", - "count": 1 + "x": { + "item": "byg:witch_hazel_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_witch_hazel", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_zelkova.json index 0b5053cf46..15468b0838 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_byg_zelkova.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:zelkova_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_zelkova", - "count": 1 + "x": { + "item": "byg:zelkova_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_byg_zelkova", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_crimson.json index 3f1451ad08..7afd47db93 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_crimson.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:crimson_planks" + } }, - "x": { - "item": "minecraft:crimson_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_crimson", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_crimson", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_dark_oak.json index 6eafa1be3c..eee0d31174 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_dark_oak.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:dark_oak_planks" + } }, - "x": { - "item": "minecraft:dark_oak_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_dark_oak", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_dark_oak", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_immersiveengineering_treated_wood.json index a50d152fa4..c00b8f7cb9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_immersiveengineering_treated_wood.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { + ], + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_packaged" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_immersiveengineering_treated_wood", - "count": 1 + "x": { + "item": "immersiveengineering:treated_wood_packaged" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_immersiveengineering_treated_wood", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_immersiveengineering_treated_wood_packaged.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_immersiveengineering_treated_wood_packaged.json deleted file mode 100644 index a50d152fa4..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_immersiveengineering_treated_wood_packaged.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_packaged" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_immersiveengineering_treated_wood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_immersiveengineering_treated_wood_packaged_horizontal.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_immersiveengineering_treated_wood_packaged_horizontal.json deleted file mode 100644 index 5f7ed58464..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_immersiveengineering_treated_wood_packaged_horizontal.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_horizontal" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_immersiveengineering_treated_wood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_immersiveengineering_treated_wood_packaged_vertical.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_immersiveengineering_treated_wood_packaged_vertical.json deleted file mode 100644 index 160b0c0eeb..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_immersiveengineering_treated_wood_packaged_vertical.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_vertical" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_immersiveengineering_treated_wood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_jungle.json index 475a550f59..320e8e9692 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_jungle.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:jungle_planks" + } }, - "x": { - "item": "minecraft:jungle_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_jungle", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_jungle", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_oak.json index 30100bd934..d0a2649d2b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_oak.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:oak_planks" + } }, - "x": { - "item": "minecraft:oak_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_oak", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_oak", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_spruce.json index cb6199e388..50eb3d326a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_spruce.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:spruce_planks" + } }, - "x": { - "item": "minecraft:spruce_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_spruce", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_spruce", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_warped.json index 7be033626b..3d0f2f4c5f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_classic_warped.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - "x ", - "xxx", - "y y" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + "x ", + "xxx", + "y y" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:warped_planks" + } }, - "x": { - "item": "minecraft:warped_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_classic_warped", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_classic_warped", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_acacia.json index de1df54f4e..b2bfb28b89 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_acacia.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:shield" - }, - { - "item": "ironagefurniture:chair_wood_ironage_classic_acacia" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:shield" + }, + { + "item": "ironagefurniture:chair_wood_ironage_classic_acacia" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_acacia" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_acacia" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_cherry.json index 61180ea470..d01b98e6a7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_dead.json index 10fc62b667..346565e63f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_dead.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_dead" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_dead" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_dead" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_fir.json index d2cc70e903..0e067af38d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_hellbark.json index 18a2ef7438..80e68e1d35 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_hellbark.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_hellbark" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_hellbark" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_hellbark" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_jacaranda.json index f4ab96b627..a91dbb3aba 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_magic.json index 1ef946f7c6..0a5ad7fd28 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_magic.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_magic" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_magic" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_magic" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_mahogany.json index 4dc9c2fc94..73548ee38a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_palm.json index ce2efa300d..ded19eff04 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_redwood.json index 02fc33ff26..13e3b4da9a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_umbran.json index 0fae4478f4..72a85ede19 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_umbran.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_umbran" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_umbran" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_umbran" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_willow.json index 85df495091..131f2feaba 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_biomesoplenty_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_biomesoplenty_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_biomesoplenty_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_birch.json index 7a36013b1f..878d6dd3f0 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_birch.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:shield" - }, - { - "item": "ironagefurniture:chair_wood_ironage_classic_birch" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:shield" + }, + { + "item": "ironagefurniture:chair_wood_ironage_classic_birch" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_birch" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_birch" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_aspen.json index d1428b58c9..3248826772 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_aspen.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_aspen" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_aspen" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_aspen" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_baobab.json index 7a12b95241..6b2cd95437 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_baobab.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_baobab" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_baobab" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_baobab" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_blue_enchanted.json index f91c829284..7b1d2d1026 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_blue_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_blue_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_blue_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_blue_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_bulbis.json index 2488f755e6..7cc479a40f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_bulbis.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_bulbis" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_bulbis" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_bulbis" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_cherry.json index 23f483c325..f386bfe06d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_cherry.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_cherry" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_cherry" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_cherry" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_cika.json index f8d5631ed3..8fb9c32f62 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_cika.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_cika" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_cika" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_cika" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_cypress.json index 6b7816ce96..2dbffe1cd9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_cypress.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_cypress" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_cypress" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_cypress" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_ebony.json index b22aac0f72..747fd7b948 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_ebony.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_ebony" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_ebony" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_ebony" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_embur.json index d980526c70..5049f0739a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_embur.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_embur" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_embur" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_embur" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_ether.json index 14e1aedbb2..0dade065e9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_ether.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_ether" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_ether" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_ether" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_fir.json index 3efa09b212..e171b92947 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_fir.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_fir" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_fir" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_fir" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_glacial_oak.json deleted file mode 100644 index 3413646db5..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_glacial_oak.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:shield" - }, - { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_glacial_oak" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_glacial_oak" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_green_enchanted.json index 0ba1365a1e..37b32a7740 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_green_enchanted.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_green_enchanted" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_green_enchanted" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_green_enchanted" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_holly.json index c6f6186e5b..a884c01c2d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_holly.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_holly" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_holly" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_holly" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_ironwood.json deleted file mode 100644 index 4c158c1fe5..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_ironwood.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:shield" - }, - { - "item": "ironagefurniture:chair_wood_ironage_classic_byg_ironwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_ironwood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_jacaranda.json index d41d5d90fd..4b76fb58a6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_jacaranda.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_jacaranda" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_jacaranda" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_jacaranda" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_lament.json index 9dd43b41f9..72359db9c5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_lament.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_lament" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_lament" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_lament" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_mahogany.json index 1299c4d3a7..f4abfe5607 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_mahogany.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_mahogany" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_mahogany" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_mahogany" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_mangrove.json index f628bd0b44..2958979513 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_mangrove.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_mangrove" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_mangrove" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_mangrove" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_maple.json index 10c1e3a3d4..f142138d90 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_maple.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_maple" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_maple" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_maple" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_nightshade.json index 20ac16fa3b..f07cfe471d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_nightshade.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_nightshade" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_nightshade" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_nightshade" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_palm.json index fad0ee2959..260b6732d4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_palm.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_palm" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_palm" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_palm" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_pine.json index a8c05495a3..2ca6191c71 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_pine.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_pine" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_pine" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_pine" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_rainbow_eucalyptus.json index e10968106a..fa60374cce 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_rainbow_eucalyptus.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_rainbow_eucalyptus" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_rainbow_eucalyptus" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_rainbow_eucalyptus" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_redwood.json index 9f180b0b4e..2c5eb4080f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_redwood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_redwood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_redwood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_redwood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_skyris.json index 906e3765e8..5ad8dd7629 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_skyris.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_skyris" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_skyris" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_skyris" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_willow.json index b7c1925515..db4f2c2f76 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_willow.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_willow" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_willow" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_willow" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_witch_hazel.json index 73e9f4d8f7..7833ea06cb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_witch_hazel.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_witch_hazel" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_witch_hazel" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_witch_hazel" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_zelkova.json index a070b64dd3..17111712e6 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_byg_zelkova.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_byg_zelkova" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_byg_zelkova" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_byg_zelkova" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_crimson.json index a9671637b2..9da4c99c86 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_crimson.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:shield" - }, - { - "item": "ironagefurniture:chair_wood_ironage_classic_crimson" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:shield" + }, + { + "item": "ironagefurniture:chair_wood_ironage_classic_crimson" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_crimson" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_crimson" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_dark_oak.json index 3b10944567..5bd30c63fb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_dark_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:shield" - }, - { - "item": "ironagefurniture:chair_wood_ironage_classic_dark_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:shield" + }, + { + "item": "ironagefurniture:chair_wood_ironage_classic_dark_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_dark_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_dark_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_immersiveengineering_treated_wood.json index 8197cab199..7be32b6818 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_immersiveengineering_treated_wood.json @@ -1,27 +1,20 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "crafting_shapeless", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { + ], + "ingredients": [ + { "item": "minecraft:shield" - }, - { + }, + { "item": "ironagefurniture:chair_wood_ironage_classic_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_immersiveengineering_treated_wood" } - } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_immersiveengineering_treated_wood" } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_immersiveengineering_treated_wood_packaged.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_immersiveengineering_treated_wood_packaged.json deleted file mode 100644 index 8197cab199..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_immersiveengineering_treated_wood_packaged.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:shield" - }, - { - "item": "ironagefurniture:chair_wood_ironage_classic_immersiveengineering_treated_wood" - } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_immersiveengineering_treated_wood" - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_jungle.json index f3864ab2af..62fa2eec92 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_jungle.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:shield" - }, - { - "item": "ironagefurniture:chair_wood_ironage_classic_jungle" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:shield" + }, + { + "item": "ironagefurniture:chair_wood_ironage_classic_jungle" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_jungle" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_jungle" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_oak.json index 4e43a0ac3a..1877c09a50 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_oak.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:shield" - }, - { - "item": "ironagefurniture:chair_wood_ironage_classic_oak" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:shield" + }, + { + "item": "ironagefurniture:chair_wood_ironage_classic_oak" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_oak" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_oak" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_spruce.json index b77ef0eb8c..2d3ee240ee 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_spruce.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:shield" - }, - { - "item": "ironagefurniture:chair_wood_ironage_classic_spruce" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:shield" + }, + { + "item": "ironagefurniture:chair_wood_ironage_classic_spruce" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_spruce" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_spruce" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_warped.json index 43bc65ebc8..7a057ae05c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_shield_warped.json @@ -1,14 +1,14 @@ { - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:shield" - }, - { - "item": "ironagefurniture:chair_wood_ironage_classic_warped" + "type": "crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:shield" + }, + { + "item": "ironagefurniture:chair_wood_ironage_classic_warped" + } + ], + "result": { + "item": "ironagefurniture:chair_wood_ironage_shield_warped" } - ], - "result": { - "item": "ironagefurniture:chair_wood_ironage_shield_warped" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_acacia.json index b41ce3c6a1..6424020b1d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_acacia.json @@ -1,20 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:acacia_planks" + } }, - "x": { - "item": "minecraft:acacia_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_acacia", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_acacia", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_cherry.json index 787f31fa86..1c43d99d79 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_cherry.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:cherry_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_cherry", - "count": 1 + "x": { + "item": "biomesoplenty:cherry_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_cherry", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_dead.json index 8069de0779..0d7722d220 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_dead.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:dead_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_dead", - "count": 1 + "x": { + "item": "biomesoplenty:dead_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_dead", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_fir.json index fc0f46e9b4..70cf990d34 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_fir.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:fir_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_fir", - "count": 1 + "x": { + "item": "biomesoplenty:fir_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_fir", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_hellbark.json index c4f2428374..88874621b2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_hellbark.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:hellbark_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_hellbark", - "count": 1 + "x": { + "item": "biomesoplenty:hellbark_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_hellbark", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_jacaranda.json index 9da4a0ad4d..12c71ca807 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_jacaranda.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:jacaranda_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_jacaranda", - "count": 1 + "x": { + "item": "biomesoplenty:jacaranda_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_jacaranda", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_magic.json index 0464835523..7c28b2c91e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_magic.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:magic_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_magic", - "count": 1 + "x": { + "item": "biomesoplenty:magic_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_magic", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_mahogany.json index 5ec4f6d9c3..0c80bd19e4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_mahogany.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:mahogany_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_mahogany", - "count": 1 + "x": { + "item": "biomesoplenty:mahogany_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_mahogany", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_palm.json index 786a4ee9dc..1f6cdc66df 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_palm.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:palm_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_palm", - "count": 1 + "x": { + "item": "biomesoplenty:palm_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_palm", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_redwood.json index c8ed81bcbc..a89cfa48a9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_redwood.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:redwood_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_redwood", - "count": 1 + "x": { + "item": "biomesoplenty:redwood_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_redwood", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_umbran.json index 760cb12fb7..3a0971e4b7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_umbran.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:umbran_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_umbran", - "count": 1 + "x": { + "item": "biomesoplenty:umbran_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_umbran", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_willow.json index d7288dcd7a..8a1803876f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_biomesoplenty_willow.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:willow_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_willow", - "count": 1 + "x": { + "item": "biomesoplenty:willow_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_biomesoplenty_willow", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_birch.json index 4519b25ea9..503ba58098 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_birch.json @@ -1,20 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:birch_planks" + } }, - "x": { - "item": "minecraft:birch_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_birch", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_birch", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_aspen.json index 65c115546d..403ea84092 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_aspen.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:aspen_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_aspen", - "count": 1 + "x": { + "item": "byg:aspen_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_aspen", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_baobab.json index d3033406f1..6fa73e2589 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_baobab.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:baobab_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_baobab", - "count": 1 + "x": { + "item": "byg:baobab_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_baobab", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_blue_enchanted.json index e39b65678f..46dcdb0677 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_blue_enchanted.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:blue_enchanted_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_blue_enchanted", - "count": 1 + "x": { + "item": "byg:blue_enchanted_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_blue_enchanted", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_bulbis.json index 5f5c0d5fb5..294fbcab80 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_bulbis.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:bulbis_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_bulbis", - "count": 1 + "x": { + "item": "byg:bulbis_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_bulbis", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_cherry.json index a1c04d1f9c..c7819fce76 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_cherry.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:cherry_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_cherry", - "count": 1 + "x": { + "item": "byg:cherry_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_cherry", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_cika.json index 9d7f81c2ce..a094947d88 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_cika.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:cika_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_cika", - "count": 1 + "x": { + "item": "byg:cika_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_cika", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_cypress.json index 7c0b70ce95..914160f787 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_cypress.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:cypress_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_cypress", - "count": 1 + "x": { + "item": "byg:cypress_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_cypress", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_ebony.json index 1ac8a324ce..9949ade64c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_ebony.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:ebony_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_ebony", - "count": 1 + "x": { + "item": "byg:ebony_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_ebony", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_embur.json index 59e91e5209..53c01adf9e 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_embur.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:embur_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_embur", - "count": 1 + "x": { + "item": "byg:embur_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_embur", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_ether.json index 74e965bcbe..3499c5a0cf 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_ether.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:ether_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_ether", - "count": 1 + "x": { + "item": "byg:ether_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_ether", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_fir.json index e93e102e5e..0309b62e8f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_fir.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:fir_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_fir", - "count": 1 + "x": { + "item": "byg:fir_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_fir", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_glacial_oak.json deleted file mode 100644 index 41de221bab..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_glacial_oak.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:glacial_oak_planks" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_glacial_oak", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_green_enchanted.json index 5ff65a5c97..2b22290bfa 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_green_enchanted.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:green_enchanted_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_green_enchanted", - "count": 1 + "x": { + "item": "byg:green_enchanted_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_green_enchanted", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_holly.json index 93cf47488e..e9af4846e3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_holly.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:holly_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_holly", - "count": 1 + "x": { + "item": "byg:holly_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_holly", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_ironwood.json deleted file mode 100644 index cc4d1a0dd3..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_ironwood.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:ironwood_planks" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_ironwood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_jacaranda.json index d506b7e777..4e3ff1d02d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_jacaranda.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:jacaranda_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_jacaranda", - "count": 1 + "x": { + "item": "byg:jacaranda_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_jacaranda", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_lament.json index 6c5e1cae0f..fa1ddf9cb3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_lament.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:lament_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_lament", - "count": 1 + "x": { + "item": "byg:lament_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_lament", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_mahogany.json index 7e2b456601..e402c5dab3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_mahogany.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:mahogany_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_mahogany", - "count": 1 + "x": { + "item": "byg:mahogany_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_mahogany", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_mangrove.json index dbb2d62a92..2f06c14fcd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_mangrove.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:mangrove_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_mangrove", - "count": 1 + "x": { + "item": "byg:mangrove_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_mangrove", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_maple.json index fdd6da9c54..280b4cca83 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_maple.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:maple_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_maple", - "count": 1 + "x": { + "item": "byg:maple_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_maple", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_nightshade.json index 96a28e5264..cc247fab20 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_nightshade.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:nightshade_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_nightshade", - "count": 1 + "x": { + "item": "byg:nightshade_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_nightshade", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_palm.json index 66598d5c50..42b98a0945 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_palm.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:palm_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_palm", - "count": 1 + "x": { + "item": "byg:palm_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_palm", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_pine.json index 4c2eff11af..c0369ccbbe 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_pine.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:pine_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_pine", - "count": 1 + "x": { + "item": "byg:pine_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_pine", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_rainbow_eucalyptus.json index d2ba54b798..fa729e3b6f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_rainbow_eucalyptus.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:rainbow_eucalyptus_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_rainbow_eucalyptus", - "count": 1 + "x": { + "item": "byg:rainbow_eucalyptus_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_rainbow_eucalyptus", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_redwood.json index 5233a62959..3e3b083878 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_redwood.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:redwood_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_redwood", - "count": 1 + "x": { + "item": "byg:redwood_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_redwood", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_skyris.json index 202af4e5e8..91d1e49c83 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_skyris.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:skyris_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_skyris", - "count": 1 + "x": { + "item": "byg:skyris_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_skyris", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_willow.json index e127a9de96..baf0c6729b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_willow.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:willow_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_willow", - "count": 1 + "x": { + "item": "byg:willow_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_willow", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_witch_hazel.json index 11a6d01971..5ff262dc31 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_witch_hazel.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:witch_hazel_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_witch_hazel", - "count": 1 + "x": { + "item": "byg:witch_hazel_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_witch_hazel", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_zelkova.json index a2f21e6fba..52c9c819c7 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_byg_zelkova.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:zelkova_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_zelkova", - "count": 1 + "x": { + "item": "byg:zelkova_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_byg_zelkova", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_crimson.json index 8c491947b7..ae7b69cb03 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_crimson.json @@ -1,20 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:crimson_planks" + } }, - "x": { - "item": "minecraft:crimson_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_crimson", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_crimson", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_dark_oak.json index b66836926b..19a5b2f64b 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_dark_oak.json @@ -1,20 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:dark_oak_planks" + } }, - "x": { - "item": "minecraft:dark_oak_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_dark_oak", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_dark_oak", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_immersiveengineering_treated_wood.json index 497eaf6607..04514ec936 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_immersiveengineering_treated_wood.json @@ -1,33 +1,25 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_packaged" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_immersiveengineering_treated_wood", - "count": 1 + "x": { + "item": "immersiveengineering:treated_wood_packaged" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_immersiveengineering_treated_wood", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_immersiveengineering_treated_wood_packaged.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_immersiveengineering_treated_wood_packaged.json deleted file mode 100644 index 497eaf6607..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_immersiveengineering_treated_wood_packaged.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_packaged" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_immersiveengineering_treated_wood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_immersiveengineering_treated_wood_packaged_horizontal.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_immersiveengineering_treated_wood_packaged_horizontal.json deleted file mode 100644 index 2a29e03427..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_immersiveengineering_treated_wood_packaged_horizontal.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_horizontal" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_immersiveengineering_treated_wood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_immersiveengineering_treated_wood_packaged_vertical.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_immersiveengineering_treated_wood_packaged_vertical.json deleted file mode 100644 index cefdea1b27..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_immersiveengineering_treated_wood_packaged_vertical.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_vertical" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_immersiveengineering_treated_wood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_jungle.json index dbf9290318..9c2420b792 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_jungle.json @@ -1,20 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:jungle_planks" + } }, - "x": { - "item": "minecraft:jungle_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_jungle", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_jungle", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_oak.json index 09bd05b60c..edd277f2b4 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_oak.json @@ -1,20 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:oak_planks" + } }, - "x": { - "item": "minecraft:oak_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_oak", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_oak", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_spruce.json index d9ae4a497e..a9ca6db933 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_spruce.json @@ -1,20 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:spruce_planks" + } }, - "x": { - "item": "minecraft:spruce_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_spruce", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_spruce", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_warped.json index 28c86677a6..6ee050c97d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_short_warped.json @@ -1,20 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + " x ", + "yyy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:warped_planks" + } }, - "x": { - "item": "minecraft:warped_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_short_warped", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_short_warped", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_acacia.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_acacia.json index 788da91f77..54285fbe31 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_acacia.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_acacia.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:acacia_planks" + } }, - "x": { - "item": "minecraft:acacia_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_acacia", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_acacia", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_cherry.json index 0cdfacb645..ffdc2c86d5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_cherry.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:cherry_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_cherry", - "count": 1 + "x": { + "item": "biomesoplenty:cherry_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_cherry", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_dead.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_dead.json index c59403be6e..61c0f5ff85 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_dead.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_dead.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:dead_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_dead", - "count": 1 + "x": { + "item": "biomesoplenty:dead_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_dead", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_fir.json index 700a0ba5d3..20040ac2a2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_fir.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:fir_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_fir", - "count": 1 + "x": { + "item": "biomesoplenty:fir_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_fir", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_hellbark.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_hellbark.json index 89ab38bd64..e6e1592d82 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_hellbark.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_hellbark.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:hellbark_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_hellbark", - "count": 1 + "x": { + "item": "biomesoplenty:hellbark_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_hellbark", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_jacaranda.json index 90dadf810c..a3d8879890 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_jacaranda.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:jacaranda_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_jacaranda", - "count": 1 + "x": { + "item": "biomesoplenty:jacaranda_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_jacaranda", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_magic.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_magic.json index 3665d6e107..ffed27b532 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_magic.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_magic.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:magic_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_magic", - "count": 1 + "x": { + "item": "biomesoplenty:magic_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_magic", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_mahogany.json index b8da1fac81..114edd657d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_mahogany.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:mahogany_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_mahogany", - "count": 1 + "x": { + "item": "biomesoplenty:mahogany_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_mahogany", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_palm.json index 7f6217f27f..cf47084b06 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_palm.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:palm_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_palm", - "count": 1 + "x": { + "item": "biomesoplenty:palm_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_palm", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_redwood.json index 5a01000beb..a872652bf3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_redwood.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:redwood_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_redwood", - "count": 1 + "x": { + "item": "biomesoplenty:redwood_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_redwood", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_umbran.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_umbran.json index 126b61c922..4a09eccccb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_umbran.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_umbran.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:umbran_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_umbran", - "count": 1 + "x": { + "item": "biomesoplenty:umbran_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_umbran", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_willow.json index 61a13f47d2..4bf1675998 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_biomesoplenty_willow.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "biomesoplenty", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "biomesoplenty" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "biomesoplenty:willow_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_willow", - "count": 1 + "x": { + "item": "biomesoplenty:willow_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_biomesoplenty_willow", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_birch.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_birch.json index f234036c54..08753abc18 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_birch.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_birch.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:birch_planks" + } }, - "x": { - "item": "minecraft:birch_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_birch", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_birch", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_aspen.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_aspen.json index ef7b114873..7563926c82 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_aspen.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_aspen.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:aspen_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_aspen", - "count": 1 + "x": { + "item": "byg:aspen_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_aspen", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_baobab.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_baobab.json index ff6ec0eeb7..a5ff38007d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_baobab.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_baobab.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:baobab_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_baobab", - "count": 1 + "x": { + "item": "byg:baobab_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_baobab", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_blue_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_blue_enchanted.json index fef9b3063f..bc9411e7f2 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_blue_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_blue_enchanted.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:blue_enchanted_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_blue_enchanted", - "count": 1 + "x": { + "item": "byg:blue_enchanted_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_blue_enchanted", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_bulbis.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_bulbis.json index 0267aad61c..bd8b54e270 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_bulbis.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_bulbis.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:bulbis_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_bulbis", - "count": 1 + "x": { + "item": "byg:bulbis_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_bulbis", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_cherry.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_cherry.json index 286087259a..8b09137cdc 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_cherry.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_cherry.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:cherry_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_cherry", - "count": 1 + "x": { + "item": "byg:cherry_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_cherry", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_cika.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_cika.json index 2ef8666ed7..878312abbb 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_cika.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_cika.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:cika_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_cika", - "count": 1 + "x": { + "item": "byg:cika_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_cika", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_cypress.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_cypress.json index e76f3312c0..84a1042d0d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_cypress.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_cypress.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:cypress_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_cypress", - "count": 1 + "x": { + "item": "byg:cypress_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_cypress", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_ebony.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_ebony.json index 50e4a18217..0bad5bfb08 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_ebony.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_ebony.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:ebony_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_ebony", - "count": 1 + "x": { + "item": "byg:ebony_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_ebony", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_embur.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_embur.json index bbc7019745..30dd316378 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_embur.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_embur.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:embur_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_embur", - "count": 1 + "x": { + "item": "byg:embur_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_embur", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_ether.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_ether.json index 97548d504e..5726927074 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_ether.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_ether.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:ether_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_ether", - "count": 1 + "x": { + "item": "byg:ether_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_ether", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_fir.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_fir.json index 5219fab36b..bd193f9602 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_fir.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_fir.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:fir_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_fir", - "count": 1 + "x": { + "item": "byg:fir_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_fir", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_glacial_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_glacial_oak.json deleted file mode 100644 index 73eff01288..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_glacial_oak.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:glacial_oak_planks" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_glacial_oak", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_green_enchanted.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_green_enchanted.json index 62ec79ebc9..b857598bf8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_green_enchanted.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_green_enchanted.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:green_enchanted_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_green_enchanted", - "count": 1 + "x": { + "item": "byg:green_enchanted_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_green_enchanted", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_holly.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_holly.json index f282afe7fa..fc8e9cb08a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_holly.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_holly.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:holly_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_holly", - "count": 1 + "x": { + "item": "byg:holly_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_holly", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_ironwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_ironwood.json deleted file mode 100644 index 66c3f199d3..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_ironwood.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "byg", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:ironwood_planks" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_ironwood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_jacaranda.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_jacaranda.json index ca3aba3b1c..5b2c8c8c84 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_jacaranda.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_jacaranda.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:jacaranda_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_jacaranda", - "count": 1 + "x": { + "item": "byg:jacaranda_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_jacaranda", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_lament.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_lament.json index 14af31f3c8..7fc492e48f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_lament.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_lament.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:lament_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_lament", - "count": 1 + "x": { + "item": "byg:lament_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_lament", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_mahogany.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_mahogany.json index f075b65b4c..12a48ae927 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_mahogany.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_mahogany.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:mahogany_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_mahogany", - "count": 1 + "x": { + "item": "byg:mahogany_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_mahogany", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_mangrove.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_mangrove.json index 684fa90b65..4f6afc0d9d 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_mangrove.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_mangrove.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:mangrove_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_mangrove", - "count": 1 + "x": { + "item": "byg:mangrove_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_mangrove", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_maple.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_maple.json index 928c5e77e4..2de00d4790 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_maple.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_maple.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:maple_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_maple", - "count": 1 + "x": { + "item": "byg:maple_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_maple", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_nightshade.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_nightshade.json index a1888e724f..81afb4fbc3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_nightshade.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_nightshade.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:nightshade_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_nightshade", - "count": 1 + "x": { + "item": "byg:nightshade_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_nightshade", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_palm.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_palm.json index 68678a4454..14d28aa2b8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_palm.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_palm.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:palm_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_palm", - "count": 1 + "x": { + "item": "byg:palm_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_palm", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_pine.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_pine.json index abd2e96177..16b928a1c1 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_pine.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_pine.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:pine_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_pine", - "count": 1 + "x": { + "item": "byg:pine_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_pine", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_rainbow_eucalyptus.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_rainbow_eucalyptus.json index 44c8793da3..05d4238f5f 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_rainbow_eucalyptus.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_rainbow_eucalyptus.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:rainbow_eucalyptus_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_rainbow_eucalyptus", - "count": 1 + "x": { + "item": "byg:rainbow_eucalyptus_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_rainbow_eucalyptus", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_redwood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_redwood.json index d952ae31eb..b2f350f9f3 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_redwood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_redwood.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:redwood_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_redwood", - "count": 1 + "x": { + "item": "byg:redwood_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_redwood", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_skyris.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_skyris.json index 535a030470..b588dfee39 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_skyris.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_skyris.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:skyris_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_skyris", - "count": 1 + "x": { + "item": "byg:skyris_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_skyris", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_willow.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_willow.json index 71bcf43cdd..4ad4e5e9ed 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_willow.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_willow.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:willow_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_willow", - "count": 1 + "x": { + "item": "byg:willow_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_willow", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_witch_hazel.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_witch_hazel.json index 82c70493a3..8cfef1d2c9 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_witch_hazel.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_witch_hazel.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:witch_hazel_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_witch_hazel", - "count": 1 + "x": { + "item": "byg:witch_hazel_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_witch_hazel", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_zelkova.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_zelkova.json index 2fa214ceb3..5e8e57ea2a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_zelkova.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_byg_zelkova.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "byg", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "byg" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "byg:zelkova_planks" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_zelkova", - "count": 1 + "x": { + "item": "byg:zelkova_planks" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_byg_zelkova", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_crimson.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_crimson.json index 7ef91338c6..08eb3c1fbf 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_crimson.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_crimson.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:crimson_planks" + } }, - "x": { - "item": "minecraft:crimson_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_crimson", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_crimson", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_dark_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_dark_oak.json index 06bc779fdb..c51d85d529 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_dark_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_dark_oak.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:dark_oak_planks" + } }, - "x": { - "item": "minecraft:dark_oak_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_dark_oak", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_dark_oak", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_immersiveengineering_treated_wood.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_immersiveengineering_treated_wood.json index 7a4b0c8e62..35369f9658 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_immersiveengineering_treated_wood.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_immersiveengineering_treated_wood.json @@ -1,34 +1,26 @@ { - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ + "type": "minecraft:crafting_shaped", + "conditions": [ { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" + "type": "forge:mod_loaded", + "modid": "immersiveengineering" } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { + ], + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_packaged" - } }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_immersiveengineering_treated_wood", - "count": 1 + "x": { + "item": "immersiveengineering:treated_wood_packaged" } - } + }, + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_immersiveengineering_treated_wood", + "count": 1 } - ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_immersiveengineering_treated_wood_packaged.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_immersiveengineering_treated_wood_packaged.json deleted file mode 100644 index 7a4b0c8e62..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_immersiveengineering_treated_wood_packaged.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_packaged" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_immersiveengineering_treated_wood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_immersiveengineering_treated_wood_packaged_horizontal.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_immersiveengineering_treated_wood_packaged_horizontal.json deleted file mode 100644 index 26a00f5444..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_immersiveengineering_treated_wood_packaged_horizontal.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_horizontal" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_immersiveengineering_treated_wood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_immersiveengineering_treated_wood_packaged_vertical.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_immersiveengineering_treated_wood_packaged_vertical.json deleted file mode 100644 index 023bbdfba7..0000000000 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_immersiveengineering_treated_wood_packaged_vertical.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "forge:conditional", - "recipes": [ - { - "conditions": [ - { - "modid": "immersiveengineering", - "type": "forge:mod_loaded" - } - ], - "recipe": { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" - }, - "x": { - "item": "immersiveengineering:treated_wood_vertical" - } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_immersiveengineering_treated_wood", - "count": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_jungle.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_jungle.json index 051380b11f..e3f86dc65a 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_jungle.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_jungle.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:jungle_planks" + } }, - "x": { - "item": "minecraft:jungle_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_jungle", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_jungle", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_oak.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_oak.json index 030ad7e281..11c6a20960 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_oak.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_oak.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:oak_planks" + } }, - "x": { - "item": "minecraft:oak_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_oak", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_oak", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_spruce.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_spruce.json index 5e5328385f..077f0f92be 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_spruce.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_spruce.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:spruce_planks" + } }, - "x": { - "item": "minecraft:spruce_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_spruce", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_spruce", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_warped.json b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_warped.json index a663e12265..5085940621 100644 --- a/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_warped.json +++ b/src/main/resources/data/ironagefurniture/recipes/chair_wood_ironage_stool_tall_warped.json @@ -1,21 +1,20 @@ { - "type": "minecraft:crafting_shaped", - "group": "furniture", - "pattern": [ - " x ", - "yyy", - "yyy" - ], - "key": { - "y": { - "tag": "forge:rods/wooden" + "type": "minecraft:crafting_shaped", + "pattern": [ + " x ", + "yyy", + "yyy" + ], + "key": { + "y": { + "tag": "forge:rods/wooden" + }, + "x": { + "item": "minecraft:warped_planks" + } }, - "x": { - "item": "minecraft:warped_planks" + "result": { + "item": "ironagefurniture:chair_wood_ironage_stool_tall_warped", + "count": 1 } - }, - "result": { - "item": "ironagefurniture:chair_wood_ironage_stool_tall_warped", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/light_metal_ironage_block_floor_glow_clear.json b/src/main/resources/data/ironagefurniture/recipes/light_metal_ironage_block_floor_glow_clear.json index 1dc03fa41b..c2b1eb169c 100644 --- a/src/main/resources/data/ironagefurniture/recipes/light_metal_ironage_block_floor_glow_clear.json +++ b/src/main/resources/data/ironagefurniture/recipes/light_metal_ironage_block_floor_glow_clear.json @@ -1,15 +1,15 @@ { - "type": "crafting_shapeless", - "group": "light_glow", - "ingredients": [ - { - "item": "minecraft:glowstone_dust" - }, - { - "item": "minecraft:glass_bottle" + "type": "crafting_shapeless", + "group": "light_glow", + "ingredients": [ + { + "item": "minecraft:glowstone_dust" + }, + { + "item": "minecraft:glass_bottle" + } + ], + "result": { + "item": "ironagefurniture:light_metal_ironage_block_floor_glow_clear" } - ], - "result": { - "item": "ironagefurniture:light_metal_ironage_block_floor_glow_clear" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/light_metal_ironage_block_floor_lava_clear.json b/src/main/resources/data/ironagefurniture/recipes/light_metal_ironage_block_floor_lava_clear.json index 73f0c35bb5..f776c61a00 100644 --- a/src/main/resources/data/ironagefurniture/recipes/light_metal_ironage_block_floor_lava_clear.json +++ b/src/main/resources/data/ironagefurniture/recipes/light_metal_ironage_block_floor_lava_clear.json @@ -1,21 +1,21 @@ { - "type": "minecraft:crafting_shaped", - "group": "light_lava", - "pattern": [ - "yyy", - "yxy", - "yyy" - ], - "key": { - "y": { - "item": "minecraft:glass_bottle" + "type": "minecraft:crafting_shaped", + "group": "light_lava", + "pattern": [ + "yyy", + "yxy", + "yyy" + ], + "key": { + "y": { + "item": "minecraft:glass_bottle" + }, + "x": { + "item": "minecraft:lava_bucket" + } }, - "x": { - "item": "minecraft:lava_bucket" + "result": { + "item": "ironagefurniture:light_metal_ironage_block_floor_lava_clear", + "count": 8 } - }, - "result": { - "item": "ironagefurniture:light_metal_ironage_block_floor_lava_clear", - "count": 8 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/light_metal_ironage_block_floor_red_clear.json b/src/main/resources/data/ironagefurniture/recipes/light_metal_ironage_block_floor_red_clear.json index 6df3f12021..154200b4a8 100644 --- a/src/main/resources/data/ironagefurniture/recipes/light_metal_ironage_block_floor_red_clear.json +++ b/src/main/resources/data/ironagefurniture/recipes/light_metal_ironage_block_floor_red_clear.json @@ -1,15 +1,15 @@ { - "type": "crafting_shapeless", - "group": "light_glow", - "ingredients": [ - { - "item": "minecraft:redstone" - }, - { - "item": "minecraft:glass_bottle" + "type": "crafting_shapeless", + "group": "light_glow", + "ingredients": [ + { + "item": "minecraft:redstone" + }, + { + "item": "minecraft:glass_bottle" + } + ], + "result": { + "item": "ironagefurniture:light_metal_ironage_block_floor_red_clear" } - ], - "result": { - "item": "ironagefurniture:light_metal_ironage_block_floor_red_clear" - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/light_metal_ironage_sconce_floor_empty_iron.json b/src/main/resources/data/ironagefurniture/recipes/light_metal_ironage_sconce_floor_empty_iron.json index e828de7980..bfc2b6ecc5 100644 --- a/src/main/resources/data/ironagefurniture/recipes/light_metal_ironage_sconce_floor_empty_iron.json +++ b/src/main/resources/data/ironagefurniture/recipes/light_metal_ironage_sconce_floor_empty_iron.json @@ -1,18 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "group": "sconce", - "pattern": [ - "xxx", - "x ", - "x " - ], - "key": { - "x": { - "item": "minecraft:iron_nugget" + "type": "minecraft:crafting_shaped", + "group": "sconce", + "pattern": [ + "xxx", + "x ", + "x " + ], + "key": { + "x": { + "item": "minecraft:iron_nugget" + } + }, + "result": { + "item": "ironagefurniture:light_metal_ironage_sconce_floor_empty_iron", + "count": 5 } - }, - "result": { - "item": "ironagefurniture:light_metal_ironage_sconce_floor_empty_iron", - "count": 5 - } -} \ No newline at end of file +} diff --git a/src/main/resources/data/ironagefurniture/recipes/obsidian.json b/src/main/resources/data/ironagefurniture/recipes/obsidian.json index aa7be82a9a..3e704d07bd 100644 --- a/src/main/resources/data/ironagefurniture/recipes/obsidian.json +++ b/src/main/resources/data/ironagefurniture/recipes/obsidian.json @@ -1,18 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "group": "obsidian", - "pattern": [ - "yyy", - "yyy", - "yyy" - ], - "key": { - "y": { - "item": "ironagefurniture:obsidian_chunk" + "type": "minecraft:crafting_shaped", + "group": "obsidian", + "pattern": [ + "yyy", + "yyy", + "yyy" + ], + "key": { + "y": { + "item": "ironagefurniture:obsidian_chunk" + } + }, + "result": { + "item": "minecraft:obsidian", + "count": 1 } - }, - "result": { - "item": "minecraft:obsidian", - "count": 1 - } -} \ No newline at end of file +} diff --git a/src/main/resources/pack.mcmeta b/src/main/resources/pack.mcmeta index 9e72870fbc..2f34de6d13 100644 --- a/src/main/resources/pack.mcmeta +++ b/src/main/resources/pack.mcmeta @@ -1,6 +1,6 @@ { "pack": { - "description": "Iron Age Furniture", - "pack_format": 8 + "description": "IronAgeFurniture resources", + "pack_format": 9 } -} \ No newline at end of file +} diff --git a/src/optionalIntegrationTest/java/zone/moddev/mc/ironagefurniture/fixture/OptionalIntegrationRecipeProbe.java b/src/optionalIntegrationTest/java/zone/moddev/mc/ironagefurniture/fixture/OptionalIntegrationRecipeProbe.java new file mode 100644 index 0000000000..c3e45c97ec --- /dev/null +++ b/src/optionalIntegrationTest/java/zone/moddev/mc/ironagefurniture/fixture/OptionalIntegrationRecipeProbe.java @@ -0,0 +1,189 @@ +package zone.moddev.mc.ironagefurniture.fixture; + +import com.mojang.logging.LogUtils; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.server.MinecraftServer; +import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.event.server.ServerStartedEvent; +import net.minecraftforge.fml.ModList; +import net.minecraftforge.fml.common.Mod; +import org.slf4j.Logger; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.ArrayList; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; + +/** Exact-loader probe for optional recipe and recipe-advancement conditions. */ +@Mod(OptionalIntegrationRecipeProbe.MOD_ID) +public final class OptionalIntegrationRecipeProbe +{ + public static final String MOD_ID = "ironagefurnitureintegrationprobe"; + + private static final Logger LOGGER = LogUtils.getLogger(); + private static final List REQUIRED_MODS = List.of( + "biomesoplenty", "byg", "immersiveengineering", "terrablender"); + private static final int EXPECTED_CONDITIONAL_ENTRIES = 1520; + + public OptionalIntegrationRecipeProbe() + { + MinecraftForge.EVENT_BUS.addListener(this::serverStarted); + } + + private void serverStarted(ServerStartedEvent event) + { + MinecraftServer server = event.getServer(); + Map versions = requireMods(); + Map recipes = verifyRecipes(server, + "expected-conditional-recipes.txt"); + Map advancements = verifyAdvancements(server, + "expected-conditional-advancements.txt"); + + int recipeCount = recipes.values().stream().mapToInt(Integer::intValue).sum(); + int advancementCount = advancements.values().stream().mapToInt(Integer::intValue).sum(); + require(recipeCount == EXPECTED_CONDITIONAL_ENTRIES, + "Expected " + EXPECTED_CONDITIONAL_ENTRIES + + " conditional recipes, found " + recipeCount); + require(advancementCount == EXPECTED_CONDITIONAL_ENTRIES, + "Expected " + EXPECTED_CONDITIONAL_ENTRIES + + " conditional advancements, found " + advancementCount); + + writeMarker(versions, recipes, advancements, recipeCount, advancementCount); + LOGGER.info("IRON AGE FURNITURE OPTIONAL INTEGRATION PROBE PASSED: " + + "{} recipes and {} advancements", recipeCount, advancementCount); + server.halt(false); + } + + private static Map requireMods() + { + Map versions = new LinkedHashMap<>(); + for (String modId : REQUIRED_MODS) + { + String version = ModList.get().getModContainerById(modId) + .map(container -> container.getModInfo().getVersion().toString()) + .orElseThrow(() -> new IllegalStateException( + "Required optional-integration test mod is not loaded: " + modId)); + versions.put(modId, version); + } + return versions; + } + + private static Map verifyRecipes(MinecraftServer server, + String resourceName) + { + Map counts = new LinkedHashMap<>(); + List missing = new ArrayList<>(); + for (ExpectedEntry expected : readExpectedEntries(resourceName)) + { + counts.merge(expected.modId(), 1, Integer::sum); + if (server.getRecipeManager().byKey(expected.id()).isEmpty()) + { + missing.add(expected.id().toString()); + } + } + require(missing.isEmpty(), "Conditional recipes did not load: " + summarize(missing)); + return counts; + } + + private static Map verifyAdvancements(MinecraftServer server, + String resourceName) + { + Map counts = new LinkedHashMap<>(); + List missing = new ArrayList<>(); + for (ExpectedEntry expected : readExpectedEntries(resourceName)) + { + counts.merge(expected.modId(), 1, Integer::sum); + if (server.getAdvancements().getAdvancement(expected.id()) == null) + { + missing.add(expected.id().toString()); + } + } + require(missing.isEmpty(), + "Conditional recipe advancements did not load: " + summarize(missing)); + return counts; + } + + private static List readExpectedEntries(String resourceName) + { + InputStream stream = OptionalIntegrationRecipeProbe.class.getClassLoader() + .getResourceAsStream(resourceName); + if (stream == null) + { + throw new IllegalStateException("Missing probe resource " + resourceName); + } + List result = new ArrayList<>(); + try (BufferedReader reader = new BufferedReader( + new InputStreamReader(stream, StandardCharsets.UTF_8))) + { + for (String line = reader.readLine(); line != null; line = reader.readLine()) + { + if (line.isBlank()) continue; + String[] parts = line.split("=", 2); + require(parts.length == 2, "Invalid probe entry: " + line); + result.add(new ExpectedEntry(parts[0], new ResourceLocation(parts[1]))); + } + } + catch (IOException exception) + { + throw new IllegalStateException("Could not read probe resource " + resourceName, + exception); + } + return result; + } + + private static void writeMarker(Map versions, + Map recipes, + Map advancements, + int recipeCount, int advancementCount) + { + StringBuilder result = new StringBuilder() + .append("status=PASS\n") + .append("conditional_recipes_loaded=").append(recipeCount).append('\n') + .append("conditional_advancements_loaded=").append(advancementCount).append('\n'); + for (String modId : REQUIRED_MODS) + { + result.append("mod.").append(modId).append("=") + .append(versions.get(modId)).append('\n'); + } + for (String modId : List.of("biomesoplenty", "byg", "immersiveengineering")) + { + result.append("recipes.").append(modId).append("=") + .append(recipes.getOrDefault(modId, 0)).append('\n'); + result.append("advancements.").append(modId).append("=") + .append(advancements.getOrDefault(modId, 0)).append('\n'); + } + try + { + Files.writeString(Path.of("optional-integration-pass.properties"), result, + StandardCharsets.UTF_8); + } + catch (IOException exception) + { + throw new IllegalStateException("Could not write optional-integration marker", + exception); + } + } + + private static String summarize(List missing) + { + int limit = Math.min(missing.size(), 10); + return missing.subList(0, limit) + (missing.size() > limit + ? " (and " + (missing.size() - limit) + " more)" : ""); + } + + private static void require(boolean condition, String message) + { + if (!condition) throw new IllegalStateException(message); + } + + private record ExpectedEntry(String modId, ResourceLocation id) + { + } +} diff --git a/src/optionalIntegrationTest/resources/META-INF/mods.toml b/src/optionalIntegrationTest/resources/META-INF/mods.toml new file mode 100644 index 0000000000..706332c3aa --- /dev/null +++ b/src/optionalIntegrationTest/resources/META-INF/mods.toml @@ -0,0 +1,50 @@ +modLoader="javafml" +loaderVersion="[40,41)" +license="LGPL-2.1-only" + +[[mods]] +modId="ironagefurnitureintegrationprobe" +version="1" +displayName="Iron Age Furniture Optional Integration Probe" + +[[dependencies.ironagefurnitureintegrationprobe]] +modId="forge" +mandatory=true +versionRange="[40.3.0,41)" +ordering="NONE" +side="SERVER" + +[[dependencies.ironagefurnitureintegrationprobe]] +modId="minecraft" +mandatory=true +versionRange="[1.18.2]" +ordering="NONE" +side="SERVER" + +[[dependencies.ironagefurnitureintegrationprobe]] +modId="ironagefurniture" +mandatory=true +versionRange="[0.3.0.118021]" +ordering="AFTER" +side="SERVER" + +[[dependencies.ironagefurnitureintegrationprobe]] +modId="biomesoplenty" +mandatory=true +versionRange="[16.0.0.134]" +ordering="AFTER" +side="SERVER" + +[[dependencies.ironagefurnitureintegrationprobe]] +modId="byg" +mandatory=true +versionRange="[1.4]" +ordering="AFTER" +side="SERVER" + +[[dependencies.ironagefurnitureintegrationprobe]] +modId="immersiveengineering" +mandatory=true +versionRange="[1.18.2-8.4.0-161]" +ordering="AFTER" +side="SERVER" diff --git a/src/optionalIntegrationTest/resources/pack.mcmeta b/src/optionalIntegrationTest/resources/pack.mcmeta new file mode 100644 index 0000000000..9321bb8e4c --- /dev/null +++ b/src/optionalIntegrationTest/resources/pack.mcmeta @@ -0,0 +1,6 @@ +{ + "pack": { + "description": "IronAgeFurniture optional integration verification probe", + "pack_format": 9 + } +} diff --git a/src/test/java/zone/moddev/mc/ironagefurniture/migration/LegacyChunkMigrationTest.java b/src/test/java/zone/moddev/mc/ironagefurniture/migration/LegacyChunkMigrationTest.java new file mode 100644 index 0000000000..97010dc7e3 --- /dev/null +++ b/src/test/java/zone/moddev/mc/ironagefurniture/migration/LegacyChunkMigrationTest.java @@ -0,0 +1,208 @@ +package zone.moddev.mc.ironagefurniture.migration; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + +import java.lang.reflect.Field; +import java.util.BitSet; + +import net.minecraft.core.Direction; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.ListTag; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; +import zone.moddev.mc.ironagefurniture.api.enumerations.BenchType; + +public class LegacyChunkMigrationTest { + private static final int PADDED_BLOCK_ID = 300; + + @Before + public void activateSyntheticLegacyMapping() throws Exception { + bitSet("LEGACY_IAF_BLOCK_IDS").set(PADDED_BLOCK_ID); + bitSet("LEGACY_PADDED_BLOCK_IDS").set(PADDED_BLOCK_ID); + setActive(true); + } + + @After + public void clearSyntheticLegacyMapping() throws Exception { + bitSet("LEGACY_IAF_BLOCK_IDS").clear(); + bitSet("LEGACY_PADDED_BLOCK_IDS").clear(); + setActive(false); + } + + @Test + public void normalizesForgeNamespacedVanilla110BlockEntities() { + CompoundTag level = new CompoundTag(); + ListTag blockEntities = new ListTag(); + CompoundTag chest = new CompoundTag(); + chest.putString("id", "minecraft:Chest"); + blockEntities.add(chest); + CompoundTag furnace = new CompoundTag(); + furnace.putString("id", "Furnace"); + blockEntities.add(furnace); + CompoundTag modern = new CompoundTag(); + modern.putString("id", "minecraft:barrel"); + blockEntities.add(modern); + level.put("TileEntities", blockEntities); + + assertEquals(2, LegacyWorldDataHook.normalizeLegacyVanillaBlockEntityIds(level)); + assertEquals("minecraft:chest", blockEntities.getCompound(0).getString("id")); + assertEquals("minecraft:furnace", blockEntities.getCompound(1).getString("id")); + assertEquals("minecraft:barrel", blockEntities.getCompound(2).getString("id")); + } + + @Test + public void injectsRedDataForReleasedBenchesWithoutColourNbt() { + CompoundTag root = legacyChunk(false); + LegacyWorldDataHook.prepareLegacyChunk(root); + + CompoundTag level = root.getCompound("Level"); + ListTag blockEntities = level.getList("TileEntities", 10); + assertEquals(1, blockEntities.size()); + CompoundTag blockEntity = blockEntities.getCompound(0); + assertEquals("minecraft:sign", blockEntity.getString("id")); + assertTrue(blockEntity.getBoolean("IronAgeFurnitureLegacyPaddedBench")); + assertEquals("red", blockEntity.getString("Color")); + assertEquals(35, blockEntity.getInt("x")); + assertEquals(69, blockEntity.getInt("y")); + assertEquals(-12, blockEntity.getInt("z")); + assertTrue(level.getBoolean("TerrainPopulated")); + assertTrue(level.getBoolean("LightPopulated")); + + LegacyWorldDataHook.finalizeLegacyChunk(root); + assertEquals("full", level.getString("Status")); + assertFalse(level.contains("IronAgeFurnitureLegacyPreserveChunk")); + assertEquals("ironagefurniture:padded_bench_colour", + level.getList("TileEntities", 10).getCompound(0).getString("id")); + assertFalse(level.getList("TileEntities", 10).getCompound(0) + .contains("IronAgeFurnitureLegacyPaddedBench")); + } + + @Test + public void preservesTheStableColourField() { + CompoundTag root = legacyChunk(true); + LegacyWorldDataHook.prepareLegacyChunk(root); + + ListTag blockEntities = root.getCompound("Level").getList("TileEntities", 10); + assertEquals(1, blockEntities.size()); + assertEquals("cyan", blockEntities.getCompound(0).getString("Color")); + assertEquals("minecraft:sign", blockEntities.getCompound(0).getString("id")); + } + + @Test + public void usesTheUnnamespacedMarkerFor110DataFixing() { + CompoundTag root = legacyChunk(true); + root.putInt("DataVersion", 512); + LegacyWorldDataHook.prepareLegacyChunk(root); + + ListTag blockEntities = root.getCompound("Level").getList("TileEntities", 10); + assertEquals("Sign", blockEntities.getCompound(0).getString("id")); + assertEquals("cyan", blockEntities.getCompound(0).getString("Color")); + } + + @Test + public void decodesEveryLegacyBenchShape() { + for (int meta = 0; meta < 4; ++meta) { + assertEquals(BenchType.SINGLE, LegacyWorldDataHook.benchType(meta)); + assertEquals(BenchType.MIDDLE, LegacyWorldDataHook.benchType(meta + 4)); + assertEquals(BenchType.LEFT, LegacyWorldDataHook.benchType(meta + 8)); + assertEquals(BenchType.RIGHT, LegacyWorldDataHook.benchType(meta + 12)); + } + } + + @Test + public void decodesEveryLegacyHorizontalFacingAndMasksShapeBits() { + Direction[] expected = { + Direction.SOUTH, Direction.WEST, Direction.NORTH, Direction.EAST + }; + for (int meta = 0; meta < 16; ++meta) { + assertEquals(expected[meta & 3], LegacyWorldDataHook.direction(meta)); + } + } + + @Test + public void finalizationIsSafeToRepeat() { + CompoundTag root = legacyChunk(false); + LegacyWorldDataHook.prepareLegacyChunk(root); + LegacyWorldDataHook.finalizeLegacyChunk(root); + LegacyWorldDataHook.finalizeLegacyChunk(root); + + CompoundTag level = root.getCompound("Level"); + assertEquals("full", level.getString("Status")); + assertFalse(level.contains("IronAgeFurnitureLegacyPreserveChunk")); + assertEquals(1, level.getList("TileEntities", 10).size()); + assertEquals("ironagefurniture:padded_bench_colour", + level.getList("TileEntities", 10).getCompound(0).getString("id")); + } + + @Test + public void restoresMarkedBlockEntityAfterThe118ChunkLayoutConversion() { + CompoundTag legacyRoot = legacyChunk(true); + LegacyWorldDataHook.prepareLegacyChunk(legacyRoot); + + CompoundTag modernRoot = new CompoundTag(); + modernRoot.put("block_entities", + legacyRoot.getCompound("Level").getList("TileEntities", 10).copy()); + LegacyWorldDataHook.finalizeLegacyChunk(modernRoot); + LegacyWorldDataHook.finalizeLegacyChunk(modernRoot); + + ListTag blockEntities = modernRoot.getList("block_entities", 10); + assertEquals(1, blockEntities.size()); + assertEquals("ironagefurniture:padded_bench_colour", + blockEntities.getCompound(0).getString("id")); + assertEquals("cyan", blockEntities.getCompound(0).getString("Color")); + assertFalse(blockEntities.getCompound(0).contains("IronAgeFurnitureLegacyPaddedBench")); + } + + private static CompoundTag legacyChunk(boolean includeBlockEntity) { + int blockIndex = (5 << 8) | (4 << 4) | 3; + byte[] blocks = new byte[4096]; + byte[] add = new byte[2048]; + blocks[blockIndex] = (byte)(PADDED_BLOCK_ID & 0xFF); + int shift = (blockIndex & 1) * 4; + add[blockIndex >> 1] = (byte)(add[blockIndex >> 1] + | ((PADDED_BLOCK_ID >> 8) & 0x0F) << shift); + + CompoundTag section = new CompoundTag(); + section.putByte("Y", (byte)4); + section.putByteArray("Blocks", blocks); + section.putByteArray("Add", add); + ListTag sections = new ListTag(); + sections.add(section); + + ListTag blockEntities = new ListTag(); + if (includeBlockEntity) { + CompoundTag blockEntity = new CompoundTag(); + blockEntity.putString("id", "PaddedBenchColour"); + blockEntity.putInt("x", 35); + blockEntity.putInt("y", 69); + blockEntity.putInt("z", -12); + blockEntity.putString("Color", "cyan"); + blockEntities.add(blockEntity); + } + + CompoundTag level = new CompoundTag(); + level.putInt("xPos", 2); + level.putInt("zPos", -1); + level.put("Sections", sections); + level.put("TileEntities", blockEntities); + CompoundTag root = new CompoundTag(); + root.putInt("DataVersion", 1343); + root.put("Level", level); + return root; + } + + private static BitSet bitSet(String fieldName) throws Exception { + Field field = LegacyWorldDataHook.class.getDeclaredField(fieldName); + field.setAccessible(true); + return (BitSet)field.get(null); + } + + private static void setActive(boolean active) throws Exception { + Field field = LegacyWorldDataHook.class.getDeclaredField("legacyWorldActive"); + field.setAccessible(true); + field.setBoolean(null, active); + } +} diff --git a/src/test/java/zone/moddev/mc/ironagefurniture/migration/LegacyMigrationContractTest.java b/src/test/java/zone/moddev/mc/ironagefurniture/migration/LegacyMigrationContractTest.java new file mode 100644 index 0000000000..653852a908 --- /dev/null +++ b/src/test/java/zone/moddev/mc/ironagefurniture/migration/LegacyMigrationContractTest.java @@ -0,0 +1,45 @@ +package zone.moddev.mc.ironagefurniture.migration; + +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + +import java.io.File; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; + +import org.junit.Test; + +public class LegacyMigrationContractTest { + @Test + public void coremodRunsBeforeAndAfterVanillaFlattening() throws Exception { + String transformer = text("src/main/resources/coremods/ironagefurniture_legacy_world_fix.js"); + assertTrue(transformer.contains("net.minecraft.world.level.storage.LevelStorageSource")); + assertTrue(transformer.contains("(Ljava/io/File;Lnet/minecraft/nbt/CompoundTag;)V")); + assertTrue(transformer.contains("net.minecraft.world.level.chunk.storage.ChunkStorage")); + assertTrue(transformer.contains("Ljava/util/Optional;")); + assertTrue(transformer.contains("prepareLegacyChunk")); + assertTrue(transformer.contains("finalizeLegacyChunk")); + assertTrue(transformer.contains("net.minecraft.util.datafix.fixes.BlockStateData")); + assertTrue(new File("src/main/resources/META-INF/coremods.json").isFile()); + } + + @Test + public void migrationCoversBlocksPlayerStorageContainersAndDroppedItems() throws Exception { + String hook = text("src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyWorldDataHook.java"); + String events = text("src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyMigrationEvents.java"); + String items = text("src/main/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedItemMigration.java"); + assertTrue(hook.contains("BlockStateData")); + assertTrue(hook.contains("ensurePaddedBenchBlockEntities")); + assertTrue(hook.contains("migrateChunkContents")); + assertTrue(hook.contains("ironagefurniture_legacy_registry.dat")); + assertTrue(events.contains("PlayerLoggedInEvent")); + assertTrue(events.contains("getEnderChestInventory")); + assertTrue(events.contains("EntityJoinWorldEvent")); + assertFalse(events.contains("ChunkEvent.Load")); + assertTrue(items.contains("migrateNested")); + } + + private static String text(String path) throws Exception { + return new String(Files.readAllBytes(new File(path).toPath()), StandardCharsets.UTF_8); + } +} diff --git a/src/test/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedBenchIdsTest.java b/src/test/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedBenchIdsTest.java new file mode 100644 index 0000000000..ba0973b4cd --- /dev/null +++ b/src/test/java/zone/moddev/mc/ironagefurniture/migration/LegacyPaddedBenchIdsTest.java @@ -0,0 +1,85 @@ +package zone.moddev.mc.ironagefurniture.migration; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + +import java.util.Arrays; +import java.util.List; + +import net.minecraft.resources.ResourceLocation; +import org.junit.Test; + +public class LegacyPaddedBenchIdsTest { + private static final List COLOURS = Arrays.asList( + "red", "orange", "magenta", "light_blue", "yellow", "lime", "pink", "gray", + "light_gray", "cyan", "purple", "blue", "brown", "green", "white", "black"); + + @Test + public void mapsEveryLegacyBenchColourToTheFlattenedId() { + String bench = "chair_wood_ironage_bench_padded_single_oak"; + String backBench = "chair_wood_ironage_bench_back_padded_single_oak"; + for (String colour : COLOURS) { + assertEquals("chair_wood_ironage_bench_padded_" + colour + "_single_oak", + LegacyPaddedBenchIds.modernPaddedPath(bench, colour)); + assertEquals("chair_wood_ironage_bench_back_padded_" + colour + "_single_oak", + LegacyPaddedBenchIds.modernPaddedPath(backBench, colour)); + } + } + + @Test + public void mapsPreFlatteningBigOakToDarkOak() { + assertEquals("chair_wood_ironage_bench_padded_blue_single_dark_oak", + LegacyPaddedBenchIds.modernPaddedPath( + "chair_wood_ironage_bench_padded_single_big_oak", "blue")); + assertEquals(new ResourceLocation("ironagefurniture", "chair_wood_ironage_classic_dark_oak"), + LegacyPaddedBenchIds.currentId(new ResourceLocation( + "ironagefurniture", "chair_wood_ironage_classic_big_oak"))); + assertEquals("chair_wood_ironage_bench_padded_single_big_oak", + LegacyPaddedBenchIds.legacyPaddedPath(false, "dark_oak")); + } + + @Test + public void retainsCompatibilityIdsUntilTheirColourCanBeRead() { + ResourceLocation legacy = new ResourceLocation("ironagefurniture", + "chair_wood_ironage_bench_back_padded_single_big_oak"); + assertEquals(legacy, LegacyPaddedBenchIds.currentId(legacy)); + assertTrue(LegacyPaddedBenchIds.isLegacyPaddedPath(legacy.getPath())); + assertFalse(LegacyPaddedBenchIds.isLegacyPaddedPath( + "chair_wood_ironage_bench_back_padded_red_single_dark_oak")); + } + + @Test + public void invalidOrMissingColoursFallBackToRed() { + assertEquals("red", LegacyPaddedBenchIds.normalizeColour(null)); + assertEquals("red", LegacyPaddedBenchIds.normalizeColour("not_a_colour")); + assertEquals("light_gray", LegacyPaddedBenchIds.normalizeColour("LIGHT_GRAY")); + } + + @Test + public void importsTheLegacyBygAddonNamespace() { + ResourceLocation addon = new ResourceLocation("iafbygaddon", + "chair_wood_ironage_classic_byg_aspen"); + assertEquals(new ResourceLocation("ironagefurniture", + "chair_wood_ironage_classic_byg_aspen"), LegacyPaddedBenchIds.currentId(addon)); + assertTrue(LegacyPaddedBenchIds.isLegacyNamespace(addon.getNamespace())); + } + + @Test + public void mapsRetiredBygWoodsToDocumentedVisualFallbacks() { + assertBygFallback("frozen_oak", "byg_aspen"); + assertBygFallback("great_oak", "oak"); + assertBygFallback("hawthorn", "byg_cherry"); + assertBygFallback("ironwood", "byg_ebony"); + assertBygFallback("palm", "byg_baobab"); + assertBygFallback("rowan", "byg_maple"); + } + + private static void assertBygFallback(String legacyWood, String targetWood) { + ResourceLocation legacy = new ResourceLocation("iafbygaddon", + "chair_wood_ironage_bench_padded_single_byg_" + legacyWood); + assertEquals(new ResourceLocation("ironagefurniture", + "chair_wood_ironage_bench_padded_single_" + targetWood), + LegacyPaddedBenchIds.currentId(legacy)); + } +}